Home » PANDA » PandaRoot » Tracking » Weird STT reconstruction: efficiency depends on charge
Weird STT reconstruction: efficiency depends on charge [message #5647] |
Wed, 16 January 2008 19:03 |
Andrew Savchenko
Messages: 6 Registered: January 2008
|
occasional visitor |
From: *ikp.kfa-juelich.de
|
|
Hello all,
I'm studying the possibility of excited hyperon states decay reconstruction using Straw Tracker. I found a strange behavior while reconstructing particles of different charge:
1) polar angle (theta) is not reconstructed for large amount of events;
2) theta for negatively charged particles reconstructed significantly better than for the positively charged ones.
Just for check and to be sure it is not an error in my code, I generated kaons with BoxGenerator using fixed 1.0 GeV/c momentum, fixed 20 degrees polar angle and free azimuth angle (range from 0 to 360).
Results are in the attachments. As you can see, there are a lot of events with unknown polar angle (i.e. 90 degrees, it is just default angle in the reconstruction software). Nevertheless in the k- distribution one can see a peak about 20 degrees, but in the k+ distribution there is only some noise present alongside particles with unidentified angles.
So the question is: is this a bug or I'm doing something wrong?
How this can be fixed? I can see no reason why positively charged particles should be identified worse than negative ones.
For simulation and reconstruction standard marco from pandaroot/macro/stt was used (run.C, rundigi.C and runreco.C)
-
Attachment: k-.png
(Size: 8.72KB, Downloaded 574 times)
-
Attachment: k+.png
(Size: 10.05KB, Downloaded 581 times)
|
|
|
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5656 is a reply to message #5655] |
Thu, 17 January 2008 15:50 |
Pablo Genova
Messages: 32 Registered: May 2007
|
continuous participant |
From: *PV.INFN.IT
|
|
Dear Andrew,
what you see is really surprising.
I remember that, in the past, we had problems with the charge sign, but they were fixed!!
Did you check if, at least, the modulus of the momentum is reconstructed properly (for the positive particles)?
By the way how do you calculate the reco theta starting from the reconstructed momentum?
I guess you have to do some calculations to back propagate it at the vertex, right?
Your results suggest a bug in the zed reconstruction procedure,
I'll have a look into the problem and let you know.
Regards, Pablo
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5661 is a reply to message #5656] |
Thu, 17 January 2008 17:19 |
Andrew Savchenko
Messages: 6 Registered: January 2008
|
occasional visitor |
From: *ikp.kfa-juelich.de
|
|
Dear Pablo,
first of all to avoid uncertainties I should mention that I use rather new SVN revision 1993 of pandaroot.
Quote: |
Did you check if, at least, the modulus of the momentum is reconstructed properly (for the positive particles)?
|
No, moreover I'm wondering how can reconstruct full momentum using STT only, afaik it is possible to reconstruct only transverse momentum using the Straw Tracker. And I have not done it yet, below I'll describe why.
Quote: |
By the way how do you calculate the reco theta starting from the reconstructed momentum?
I guess you have to do some calculations to back propagate it at the vertex, right?
|
I haven't performed any calculations on my own, I just used existing code in the following way. I used a macro macro/stt/runreco.C which calls PndSttHelixTrackFitter in order to fit the tracks. And then I used values from output of this macro.
At this point I got a lot a problems while trying to understand what the fit parameters means. They are stored at the CbmTrackParam class, but the description of the fields fX, fY, fZ, fTx, fTy, fQp in this class documentation completely differs from their real meanings used in HelixFitter. I got a completely crazy results until I looked in the PndSttHelixTrackFitter source code (stt/PndSttHelixTrackFitter.[cxx|h]).
From that source code and its comments it figured out, in particular, that fTy=tan(pi/2 - theta), so I used this value.
But I'm new to the project and Z reconstruction procedure is still not clear to me, currently I'm supposed to use already working STT track reconstruction code.
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5672 is a reply to message #5661] |
Mon, 21 January 2008 15:03 |
Pablo Genova
Messages: 32 Registered: May 2007
|
continuous participant |
From: *PV.INFN.IT
|
|
Dear Andrew,
sorry for the late reply, I was busy with other businesses.
I also see very strange things with positive particles.
I'm trying to understand what is happening.
That problem was solved, I do not undestand why it is showing again. I will go back to previous stable versions and see what is happening.
One possibility is that in the conversion from Stt to Pnd nomenclature I made some mistake, previously I was working with the old pandaroot1 release and I did not see such effects.
I must apologize for the misleading comments. I must clean the PndSttHelixTrackFitter, improve the comments and the documentation, but since, in the past, nobody was really using that classes, apart from the Pavia Group, I was never doing that.
I'll let you know asap, Pablo
ps: it is possible to reconstruct both transverse and total momentum. I should put a test macro for displaying such variables.
|
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5674 is a reply to message #5673] |
Mon, 21 January 2008 16:52 |
Pablo Genova
Messages: 32 Registered: May 2007
|
continuous participant |
From: *PV.INFN.IT
|
|
I checked that with the old version it is working, but I still have to understand why with the new one is not!
For the question of the reconstruction at low theta angles, it might be that the zed procedure fails, but I think that this is is a different problem from the complete failure of the total momentum for positive tracks (the former is related to the zed reconstruction, the latter to the reconstruction of the radius of curvature, which, in our code, are done separately - first the curvature, then the zed - if the latter fails also the former fails but the vice versa in not necessairly true).
ciao, Pablo
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5693 is a reply to message #5673] |
Wed, 23 January 2008 17:07 |
Pablo Genova
Messages: 32 Registered: May 2007
|
continuous participant |
From: *PV.INFN.IT
|
|
Dear Andrew,
the errow was really stupid i. e. in the line 914 of PndSttHelixTrackFitter
if(a<0.000001) return 0;
to protect the division by zero was cutting away the a<0 i. e. the positive tracks, with
if(fabs(a)<0.000001) return 0;
it's now OK.
So try to svn-update the PndSttHelixTrackFitter and do again the reconstruction.
Other observations:
->cross check of the variables
1. fParamLast.fTx*0.006 <--------> transverse momentum
[i. e. cbmsim->Draw("(fParamLast.fTx*0.006)"]
2.fParamLast.fTx*0.006*sqrt(1+fParamLast.fTy**2)) <------> total momentum
Do you agree?
->importance of fFlag==3 parameter
when you are looking at total reco, to get the only the events with the full reconstruction succeeded do like this:
cbmsim->Draw("(fParamLast.fTx*0.006)>>h2","fFlag==3")
in this way you select the events with fFlag==3 i. e. full success of the whole reconstructed procedure.
You should not see any more the 90 degree values (algorithm failure). Of course I expect that the reconstruction is not perfect when you go to small theta angles, since you are using only the stt with lower number of hits.
It's certainly an interesting and not yet done study that of STT resolution at small theta angles, with or without MVD.
MVD + STT integration is also an interesting issue not yet tackled.
########################################
If you need better explanation of the variables and the fitting procedure etc etc I can send you the presentations I made in the past and Lia's Phd Thesis (which, among other things, describes in detail the algorithm).
########################################
I'll soon clean the code and put into the repository a better commented version of PndSttHelixTrackFitter
LET ME KNOW IF IT'S OK AND ANY QUESTION ON YOUR SIDE!!
ciao, Pablo
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5703 is a reply to message #5693] |
Fri, 25 January 2008 17:01 |
Andrew Savchenko
Messages: 6 Registered: January 2008
|
occasional visitor |
From: *ikp.kfa-juelich.de
|
|
Dear Pablo,
sorry for a long response, but I was busy a lot these days.
Pablo Genova wrote on Wed, 23 January 2008 17:07 |
So try to svn-update the PndSttHelixTrackFitter and do again the reconstruction.
|
Yes, this works thank you very much.
Quote: |
Other observations:
->cross check of the variables
1. fParamLast.fTx*0.006 <--------> transverse momentum
[i. e. cbmsim->Draw("(fParamLast.fTx*0.006)"]
2.fParamLast.fTx*0.006*sqrt(1+fParamLast.fTy**2)) <------> total momentum
Do you agree?
|
Yes, I do. This is mathematically equivalent to what I'm using now.
Quote: |
->importance of fFlag==3 parameter
when you are looking at total reco, to get the only the events with the full reconstruction succeeded do like this:
cbmsim->Draw("(fParamLast.fTx*0.006)>>h2","fFlag==3")
in this way you select the events with fFlag==3 i. e. full success of the whole reconstructed procedure.
|
Yes, this helps. But not absolutely. Even with a check for (GetFlag() == 3) I still can see this false peak at 90 degrees, but it become much smaller.
Quote: |
It's certainly an interesting and not yet done study that of STT resolution at small theta angles, with or without MVD.
MVD + STT integration is also an interesting issue not yet tackled.
|
Yeah, this should be investigated indeed, but later. Currently I will be out of work for several months due to technical reasons.
Quote: |
If you need better explanation of the variables and the fitting procedure etc etc I can send you the presentations I made in the past and Lia's Phd Thesis (which, among other things, describes in detail the algorithm).
|
OK, this will be useful, but later
Andrew
[Updated on: Fri, 25 January 2008 17:02] Report message to a moderator
|
|
|
Re: Weird STT reconstruction: efficiency depends on charge [message #5704 is a reply to message #5703] |
Fri, 25 January 2008 17:33 |
Pablo Genova
Messages: 32 Registered: May 2007
|
continuous participant |
From: *PV.INFN.IT
|
|
Dear Andew,
I'm happy that at least the main problem is fixed and you also see the results.
More work is needed to integrate STT and MVD and to test carefully the zed reconstruction procedure.
Let's keep in touch for any news, I'll keep you updated with my changes (by documenting them in the forum and in the wiki).
ciao, Pablo
|
|
|
Goto Forum:
Current Time: Sat Nov 23 06:20:06 CET 2024
Total time taken to generate the page: 0.01057 seconds
|