LYCCA ToF scintillators [message #18548] |
Wed, 07 October 2015 10:09 |
a_boso
Messages: 16 Registered: July 2014
|
occasional visitor |
From: *pd.infn.it
|
|
Dear all,
I am trying to use ToF Start scintillator to get position informations.
Looking at the code I saw the possibility to use a "x_shear" parameter, which permits to introduce a "y-dependent" offset on the x position.
Which is the physical meaning of this quantity? How can I optimize it?
More generally, do you know how can I optimize the position information of the Lycca ToF scintillators? Which resolution should I expect?
Last question:
Could you please share the positions of the PMTs you have in the Lycca/Lycca/Membrane.par file for the ToFStart and ToFStop scintillators?
I have more than one set, and I don't know which one is the right one.
Thank you very much!
Alberto
|
|
|
|
|
Re: LYCCA ToF scintillators [message #19425 is a reply to message #19424] |
Fri, 12 August 2016 17:20 |
Michael Reese
Messages: 9 Registered: August 2016
|
occasional visitor |
From: *gsi.de
|
|
Hi,
You need to create a pattern artificially. One possible way to do this is to draw a rectangular gate around the projected TPC-position, i.e. the "true" position, and make a gated ToF x:y plot with the condition that the "true" position is inside that gate. You'll see the distorted shape of whatever gate you have drawn.
Reminder of how to create such a rectangular gate in the config file (I didn't test that piece of code... there might be typos inside):
processor ToF_Start/TPC/gate UTILS.ConditionWindow2D
x <- Frs/S4tracking.xs[5]
y <- Frs/S4tracking.ys[5]
display x:y | xy_window
end
processor ToF_Start/distored UTILS.PairWithCondition
first <- Lycca/ToFStart/Membrane.x
second <- Lycca/ToFStart/Membrane.y
condition <- ToF_Start/TPC/gate.inside
display tested_first:tested_second
end
If you want to have multiple gates, you could do something like this for 6 gates:
for $i in [0:5]
processor ToF_Start/TPC/gate_$i UTILS.ConditionWindow2D
x <- Frs/S4tracking.xs[5]
y <- Frs/S4tracking.ys[5]
display x:y | xy_window
end
end
processor ToF_Start/distored UTILS.PairWithCondition
first <- Lycca/ToFStart/Membrane.x
second <- Lycca/ToFStart/Membrane.y
for $i in [0:5]
condition <- ToF_Start/TPC/gate_$i.inside
end
display tested_first:tested_second
end
Then you could draw gates in the shape of horizontal lines, three gates in the shape of vertical lines, and together they'll make a grid-like shape.
[Updated on: Fri, 12 August 2016 17:24] Report message to a moderator
|
|
|
|
Re: LYCCA ToF scintillators [message #19427 is a reply to message #19426] |
Fri, 12 August 2016 17:32 |
SMilne
Messages: 30 Registered: July 2014 Location: York
|
continuous participant |
From: 5.151.46*
|
|
Hi Michael,
Thanks for your response. I will give it a try and see what I get.
Yeah, the other calibrations are already completed, this was just to try and optimise them a little more.
Thanks,
Scott
|
|
|