- bouchet's home page
- Posts
- 2016
- 2015
- December (1)
- November (3)
- October (2)
- September (2)
- August (2)
- June (2)
- April (5)
- March (2)
- February (3)
- January (2)
- 2014
- December (2)
- November (2)
- October (3)
- September (2)
- August (3)
- July (1)
- June (3)
- May (6)
- April (6)
- March (1)
- February (2)
- January (1)
- 2013
- December (2)
- November (3)
- October (3)
- September (4)
- August (1)
- July (1)
- May (4)
- April (6)
- March (4)
- February (3)
- 2012
- 2011
- December (2)
- November (2)
- October (4)
- September (1)
- August (2)
- July (6)
- June (2)
- May (3)
- April (3)
- March (2)
- 2010
- 2009
- December (2)
- November (1)
- October (3)
- September (1)
- August (1)
- July (1)
- June (2)
- April (1)
- March (2)
- February (2)
- January (1)
- 2008
- My blog
- Post new blog entry
- All blogs
test production
- test done locally in DEV with files from Yifei.
The files are AuAu MB events with |Zvertex| < 40 cm and sigma_vertex = 40 cm ; run over 1k events
QA PLOTs : here
There is no pileup hits since the purpose of this production was to create the .event.root to produce the pileup hits
2. correction in the analysis :
We have seen that some vertex selected have no primary tracks.
It's because in the analysis code, the 'good' vertex was selected using the rank :
Float_t currentRank = event->primaryVertex(v)->ranking();
if(event->primaryVertex(ipr)->ranking()!=highestRank) continue;
However, this is not always true.
I tried the proposal from Yifei to remove these vertices :
StThreeVectorD PrimPos = event->primaryVertex(v)->position();
if(fabs(PrimPos.x())<0.05 && fabs(PrimPos.y())<0.05 && fabs(PrimPos.z())<40)
{
cout <<" current vertex x= "<<PrimPos.x() <<" y = "<<PrimPos.y() <<" z= "<<PrimPos.z() << endl;
goodVertex = v;
}
QAplots: here
3. test production in DEV from scratch : here
4. test in SL08f with updated StiKalmanTrackFinder.cxx : here
5. test in SL08f witn new beam pipe : here
6. test in DEV after fullTOF config (modification of gemetry.g) : here
7. test in SL08f : final config; here
8. single tracks plots : here
(an update with beta taken into account for the sigma_dca is here )
9. tpc hit errors investigation : here
10. mini production w/o SSD (w/o IST) in reconstruction chain : here
- bouchet's blog
- Login or register to post comments