7 #include "TGeoMatrix.h"
9 #include "TDirectory.h"
12 #include "TRSymMatrix.h"
16 #include "StGmtHitCollection.h"
17 #include "StGmtCollection.h"
18 #include "StarRoot/THelixTrack.h"
23 #include "StPrimaryVertex.h"
24 #include "StEventInfo.h"
25 #include "StEventSummary.h"
27 #include "StTrackNode.h"
28 #include "StPrimaryTrack.h"
29 #include "StGlobalTrack.h"
30 #include "StTrackDetectorInfo.h"
31 #include "StTrackGeometry.h"
32 #include "StDcaGeometry.h"
33 #include "St_base/StMessMgr.h"
38 #define __OnlyGlobal__
40 TClonesArray *EventT::fgTracks = 0;
41 TClonesArray *EventT::fgHits = 0;
42 THashList *EventT::fRotList = 0;
44 static int _debug = 0;
47 EventT::EventT() : fIsValid(kFALSE) {
52 if (!fgTracks) fgTracks =
new TClonesArray(
"TrackT", 1000);
55 if (!fgHits) fgHits =
new TClonesArray(
"HitT", 1000);
67 Int_t EventT::Build(
StEvent *pEventT, Double_t pCut) {
70 static const Int_t NoFitPointCutForGoodTrackT = 15;
75 if (! pEventT)
return iok;
77 if (! GmtCollection) {
78 LOG_INFO <<
"No GMT Collections" << endm;
81 StSPtrVecTrackNode& theNodes = pEventT->trackNodes();
82 UInt_t nnodes = theNodes.size();
84 LOG_INFO <<
"No tracks" << endm;
88 Int_t ev = 0, run = 0, time = 0;
96 if (summary) field = summary->magneticField();
97 SetHeader(ev,run,time,field);
101 for (UInt_t i=0; i<nnodes; i++) {
103 if (! node)
continue;
105 if (! Track)
continue;
110 #ifndef __OnlyGlobal__
111 if (! pTrack)
continue;
115 Double_t pT = g3.perp();
116 Double_t pMom = g3.mag();
117 if (pMom < pCut)
continue;
120 Double_t TanL = 999999;
121 if (TMath::Abs(pT) > 1.e-7) {
122 InvpT = Track->geometry()->charge()/pT;
125 track->SetInvpT(InvpT);
126 track->SetPhi(TMath::ATan2(g3.y(),g3.x()));
127 track->SetTanL(TanL);
128 static const Double_t EC = 2.9979251E-4;
129 Double_t Rho = - EC*InvpT*field;
131 track->SetLength(Track->length());
133 track->SetNpoint(dinfo->numberOfPoints());
134 track->SetNPpoint(Track->numberOfPossiblePoints());
137 Double_t R_tof[2]= {210., 216.};
138 pair<Double_t,Double_t> shR = helixO.
pathLength(0.5*(R_tof[0]+R_tof[1]));
140 if (TMath::Abs(shR.first) > 200 && TMath::Abs(shR.second) > 200)
continue;
142 Double_t stepR = (shR.first > 0) ? shR.first : shR.second;
144 Double_t phiR = TMath::RadToDeg()*xyzR.phi();
146 LOG_INFO <<
"\t shR " << shR.first <<
"\t" << shR.second <<
"\tstepR " << stepR
147 <<
"\txyzR\t" << xyzR <<
"\tphiR\t" << phiR << endm;
149 Int_t NoHitPerTrack = 0;
150 THashList *fRotList = RotMatrices();
151 if (! fRotList)
continue;
152 TIter next(fRotList);
153 TGeoHMatrix *comb = 0;
155 while ((comb = (TGeoHMatrix *) next())) {
156 TString combName(comb->GetName());
157 if (! combName.BeginsWith(
"R"))
continue;
159 sscanf(comb->GetName()+1,
"%i",&Id);
162 if (! GmtHitCollection) { cout <<
"No GMT HitT Collections for mudule " << module << endl;
continue;}
163 StSPtrVecGmtHit& hitvec = GmtHitCollection->
getHitVec();
164 UInt_t NoHits = hitvec.size();
165 if (! NoHits)
continue;
167 LOG_INFO << comb->GetName() <<
"\tmodule = " << module << endm;
170 static Double_t dz[2] = {50.00, 2.10};
171 static Double_t dx[2] = {50.00, 3.65};
173 Double_t *rot = comb->GetRotationMatrix();
174 Double_t *tra = comb->GetTranslation();
180 LOG_INFO <<
"middle:" << middle <<
"\tnormal:" << normal << endm;
182 comb->LocalToMaster(zero.xyz(),middle.xyz());
183 comb->LocalToMasterVect(unit.xyz(), normal.xyz());
185 LOG_INFO <<
"middle:" << middle <<
"\tnormal:" << normal << endm;
187 Double_t phiM = TMath::RadToDeg()*middle.phi();
189 LOG_INFO <<
"phiR = " << phiR <<
"\tphiM = " << phiM << endm;
191 Double_t dPhi = phiR - phiM;
192 if (dPhi > 360) dPhi -= 360;
193 if (dPhi < -360) dPhi += 360;
194 if (TMath::Abs(dPhi) > 15)
continue;
196 LOG_INFO <<
"zR = " << xyzR.z() <<
"\tzM = " << tra[2] << endm;
198 if (TMath::Abs(xyzR.z() - tra[2]) > 20)
continue;
199 Double_t sh = helixO.
pathLength(middle, normal);
201 LOG_INFO <<
"StHelix sh " << sh
202 <<
"\t shR " << shR.first <<
"\t" << shR.second
205 StThreeVectorD xyzG = helixO.at(sh);
if (_debug) cout <<
"StHelix xyzG\t" << xyzG << endl;
206 StThreeVectorD dR = xyzR - xyzG;
if (_debug) cout <<
"dR\t" << dR <<
" dist = " << dR.magnitude() << endl;
207 if (dR.magnitude() > 50)
continue;
208 if (sh < -5e2 || sh > 5e2)
continue;
211 LOG_INFO <<
"Qi: " << Track->geometry()->charge()
212 <<
"\tQo: " << Track->outerGeometry()->charge()
213 <<
"\tdX " << dX << endm;
214 LOG_INFO << *dca << endm;
217 comb->MasterToLocal(xyzG.xyz(),uvPred);
218 TRVector xyzL(3,uvPred);
if (_debug) cout <<
"StHelix xyzL\t" << xyzL << endl;
219 Double_t dirGPred[3] = {helixO.
cx(sh),helixO.cy(sh),helixO.cz(sh)};
221 comb->MasterToLocalVect(dirGPred,dxyzL);
222 Double_t tuvPred[2] = {dxyzL[1]/dxyzL[0], dxyzL[2]/dxyzL[0]};
224 LOG_INFO <<
"StHelix tU/tV = " << tuvPred[0] <<
"\t" << tuvPred[1] << endm;
226 if (TMath::Abs(uvPred[1]) > dx[k] + 1.0)
continue;
227 if (TMath::Abs(uvPred[2]) > dz[k] + 1.0)
continue;
229 Bool_t mIsCrossingMembrain = kTRUE;
230 Bool_t mIsPrimary = kFALSE;
236 if( (firstPoint.z()>0 && lastPoint.z()>0 && xyzG.z()>0) ||
237 (firstPoint.z()<0 && lastPoint.z()<0 && xyzG.z()<0) ) {
238 mIsCrossingMembrain = kFALSE;
241 for (UInt_t l = 0; l < NoHits; l++) {
250 h->SetHitLength(stepR);
251 h->SetHitdR(dR.magnitude());
252 h->SetHitFlag(UInt_t(hit->flag()));
253 h->SetUVPred (uvPred[1],uvPred[2]);
254 h->SettUVPred(tuvPred[0],tuvPred[1]);
255 h->SetXyzG(xyzG.xyz());
256 h->SetDirG(dirGPred);
257 h->SetisPrimary(mIsPrimary);
258 h->SetisCrossingMembrain(mIsCrossingMembrain);
259 SetHitT(h, hit, comb, track);
261 h->SetHitPerTrack(NoHitPerTrack);
266 nTotMatch += NoHitPerTrack;
269 if (nTotMatch) iok = 0;
274 TrackT *EventT::AddTrackT() {
281 TClonesArray &tracks = *fTracks;
288 HitT *EventT::AddHitT() {
295 TClonesArray &hits = *fHits;
296 HitT *hit =
new(hits[fNhit++])
HitT();
302 void EventT::Clear(Option_t * ) {
308 void EventT::Reset(Option_t * ) {
312 delete fgTracks; fgTracks = 0;
313 delete fgHits; fgHits = 0;
317 void EventT::SetHeader(Int_t i, Int_t run, Int_t date, Double32_t field) {
320 fEvtHdr.Set(i, run, date, field);
324 void EventT::Print(Option_t *opt)
const {
325 LOG_INFO <<
"Run/EventT\t" << fEvtHdr.GetRun() <<
"/" << fEvtHdr.GetEvtNum() <<
"\tDate " << fEvtHdr.GetDate()
326 <<
"\tField " << fEvtHdr.GetField() << endm;
327 LOG_INFO <<
"Total no. tracks " << GetTotalNoTracks() <<
"\tRecorded tracks " << GetNtrack()
328 <<
"\tRecorded hits " << GetNhit() << endm;
331 LOG_INFO <<
"Primary vertex " <<
vertex << endm;
332 LOG_INFO <<
"Its cov. matrix " << cov << endm;
333 for (UInt_t i = 0; i < GetNtrack(); i++) {
334 LOG_INFO << i <<
"\t"; GetTrackT(i)->Print();
336 for (UInt_t i = 0; i < GetNhit(); i++) {
337 LOG_INFO << i <<
"\t"; GetHitT(i)->Print();
343 UInt_t B = 0, L = 0, l = 0, W = 0, H = 0;
346 if (hit->detector() == kGmtId) {
356 h->SetUsedInFit(hit->usedInFit());
359 Double_t xyzG[3] = {position.x(),position.y(),position.z()};
360 h->SetGC(xyzG[0],xyzG[1],xyzG[2]);
361 Double_t xyzL[3] = {0,0,0};
362 comb->MasterToLocal(xyzG,xyzL);
364 Double_t uvw[3] = {h->GetU(),h->GetV(),0};
365 comb->LocalToMaster(uvw,xyzG);
367 Double_t *rot = comb->GetRotationMatrix();
368 h->SetWG(rot[2],rot[5],rot[8]);
370 Int_t IdH = fNhit - 1;
371 track->SetHitTId(IdH);
372 Double_t invpT = track->GetInvpT();
373 if (TMath::Abs(invpT) < 1e-7) invpT = 1e-7;
375 h->SetMom(track->GetMomentum());
376 h->SetWG(rot[2],rot[5],rot[8]);
377 TGeoHMatrix *rotL = (TGeoHMatrix *) RotMatrices()->FindObject(Form(
"WL%s",comb->GetName()+1));
378 Double_t xyzLadder[3] = {0,0,0};
380 rotL->LocalToMaster(uvw,xyzLadder);
381 h->SetL(xyzLadder[0],xyzLadder[1],xyzLadder[2]);
382 Double_t uvwP[3] = {h->GetPredU(),h->GetPredV(),0};
383 rotL->LocalToMaster(uvwP,xyzLadder);
384 h->SetXyzL(xyzLadder);
387 LOG_INFO << Form(
"WL%s",comb->GetName()+1) <<
" has not been found" << endm;
388 h->SetL(xyzLadder[0],xyzLadder[1],xyzLadder[2]);
389 h->SetXyzL(xyzLadder);
395 void TrackT::Print(Option_t *opt)
const {
396 LOG_INFO <<
"TrackT: InvpT " << fInvpT <<
"\tTanL " << fTanL
397 <<
"\tPhi " << fPhi <<
"\tRho " << fRho
398 <<
"\tNpoint " << fNpoint <<
"\tNsp " << fNsp << endm;
399 for (UInt_t i = 0; i < fNsp; i++) {
400 LOG_INFO <<
"\t" << fIdHitT[i];
406 void HitT::SetId(Int_t B, Int_t L, Int_t l, Int_t W, Int_t H) {
407 barrel = B; layer = L; ladder = l; wafer = W; hybrid = H;
411 void HitT::Print(Option_t *opt)
const {
412 LOG_INFO <<
"HitT: Id " << Id <<
"\tpT = " << pT <<
"\tmomentum " << pMom << endm;
414 LOG_INFO <<
"Global :" << glob << endm;
415 LOG_INFO <<
"Local u/v/w " << u <<
"/ " << v <<
"/ " << w << endm;
416 LOG_INFO <<
"Prediction uP/vP " << uP <<
"/ " << vP <<
"\ttuP/tvP " << tuP <<
"/ " << tvP << endm;
420 void EventT::RestoreListOfRotations() {
421 if (fRotList)
return;
422 if (! gDirectory)
return;
423 fRotList =
new THashList(100,0);
424 fRotList->SetOwner();
425 TIter nextkey(gDirectory->GetListOfKeys() );
427 while ((key = (TKey*) nextkey())) {
428 TObject *obj = key->ReadObj();
429 if ( obj->IsA()->InheritsFrom(
"TGeoHMatrix" ) ) {
436 void TBase::Loop(Int_t Nevents) {
451 const PlotPar_t plotUP = {
"uP",
"track u", 320, 3, -5., 5., 0., 3. };
453 const PlotPar_t plotDu = {
"Du",
"Du before cut", 250, 3, -2., 2., 0., 3. };
455 const PlotPar_t plotDuv = {
"Du",
"Du cuts", 200, 3, -1., 1., 0., 3. };
457 TFile *fOut =
new TFile(fOutFileName,
"recreate");
467 TH1F *hpT =
new TH1F(
"Pt",
"pt", 200, -2., 2.);
468 TH1F *hpM =
new TH1F(
"Ptot",
"ptot", 200, 0., 5.);
469 TH1F *uAll =
new TH1F(
"Uall",
"ua", plotUP.nx, plotUP.xmin, plotUP.xmax);
473 TH1F * uPAll =
new TH1F(
"UPall",
"uPall", plotUP.nx, plotUP.xmin, plotUP.xmax);
476 TH1F * uCut =
new TH1F(
"Ucut",
"uc", plotDu.nx, plotDu.xmin, plotDu.xmax);
477 TH1F * vCut =
new TH1F(
"Vcut",
"vc", 200, -3., 3.);
478 TH2F * dMin =
new TH2F(
"DMin",
"vumin",100,-0.75,0.75,100,-0.75,0.75);
479 TH1F * vMin =
new TH1F(
"VMin",
"vmin", plotDuv.nx, plotDuv.xmin, plotDuv.xmax);
480 TH1F * uMin =
new TH1F(
"UMin",
"umin", plotDuv.nx, plotDuv.xmin, plotDuv.xmax);
482 memset(LocPlots,0,NM*
sizeof(TH1F *));
483 memset( uPlots,0,NM*
sizeof(TH1F *));
485 for (
int M = 0; M < NM; M++) {
486 uName = Form(
"UModule%i", M+1);
487 uTitle = Form(
"du for M%i", M+1);
488 duB[M][0] =
new TH1F(uName, uTitle, plotDuv.nx, plotDuv.xmin, plotDuv.xmax );
489 uName = Form(
"VModule%i", M+1);
490 uTitle = Form(
"dv for M%i", M+1);
491 dvB[M] =
new TH1F(uName, uTitle, plotDuv.nx, plotDuv.xmin, plotDuv.xmax );
492 uName = Form(
"UModule%iVcut", M+1);
493 uTitle = Form(
"du for M%i after Vcut", M+1);
494 duB[M][1] =
new TH1F(uName, uTitle, plotDuv.nx, plotDuv.xmin, plotDuv.xmax );
497 uName += Form(
"M%i", module);
498 uTitle = Form(
"uP for Module %i", module);
499 uPlots[module] =
new TH1F(uName, uTitle, plotUP.nx, plotUP.xmin, plotUP.xmax );
500 uName = Form(
"%sM%i", plotDu.Name, module);
501 uTitle = Form(
"u-uP for M %i", module);
502 uName = Form(
"%sxM%i", plotDu.Name, module);
503 uTitle = Form(
"u-uP corr M %i", module);
505 xCuts[module] =
new TH1F(uName, uTitle, plotDu.nx, plotDu.xmin, plotDu.xmax );
506 uCuts[module] =
new TH1F(uName, uTitle, plotDu.nx, plotDu.xmin, plotDu.xmax );
510 Long64_t nentries = fChain->GetEntriesFast();
511 if (Nevents > 0 && nentries > Nevents) {
515 Long64_t nbytes = 0, nb = 0;
517 TString currentFile(
"");
520 for (Long64_t jentry=0; jentry<nentries;jentry++) {
522 Long64_t ientry = LoadTree(jentry);
523 if (ientry < 0)
break;
524 nb = fChain->GetEntry(jentry); nbytes += nb;
525 if (! jentry%1000 || TreeNo != fChain->GetTreeNumber()) {
526 LOG_INFO <<
"Read event \t" << jentry
527 <<
" so far, switch to file " << fChain->GetCurrentFile()->GetName()
529 LOG_INFO <<
" current TreeNo: " << TreeNo
530 <<
" new TreeNo: " << fChain->GetTreeNumber() << endm;
531 TreeNo = fChain->GetTreeNumber();
535 UInt_t Ntrack =
fEvent->GetTracks()->GetEntriesFast();
539 for (UInt_t trk = 0; trk < Ntrack; trk++) {
541 if (! track)
continue;
543 Int_t Npoints = track->GetNpoint();
544 if (minNoFitPoints > 0 && Npoints%100 < minNoFitPoints)
continue;
545 if (UseSsd && Npoints < 1000)
continue;
546 if (UseSvt && Npoints < 100)
continue;
548 Int_t Nsp = track->GetN();
549 double dvmin = 1000.;
550 double dumin = 1000.;
553 for (Int_t hit = 0; hit < Nsp; hit++) {
554 Int_t k = track->GetHitTId(hit) - 1;
557 if ( k < 0 ) LOG_INFO <<
" k <0:"<<k<<
" hit="<<hit<<
" Nsp="<<Nsp<< endm;
558 if ( k < 0 )
continue;
559 Int_t module = hitT->Barrel();
560 Double32_t u = hitT->GetU();
561 Double32_t v = hitT->GetV();
562 Double32_t uP = hitT->GetPredU();
563 Double32_t vP = hitT->GetPredV();
564 Double32_t du = u - uP;
565 Double32_t dv = v - vP;
567 hpT->Fill(hitT->GetXyzPGl());
568 hpM->Fill(hitT->GetpMom());
569 if (TMath::Abs(hitT->GetpT()) < 0.2)
continue;
572 if ( TMath::Abs(dv) < TMath::Abs(dvmin) ) {
578 uPlots[module]->Fill( uP );
580 duB[module][0]->Fill(du);
581 dvB[module]->Fill(dv);
586 duB[module][1]->Fill(du);
590 if (TMath::Abs(dvmin) < 1000.) {
591 dMin->Fill(dvmin,dumin);
Holds collections of GMT data.
Float_t getErrorLocalX() const
Local X coordinate error.
Float_t getErrorSigmaX() const
Position error in X.
Float_t getErrorAdcY() const
ADC error in Y.
StGmtHitCollection * getHitCollection(unsigned short moduleIdx)
Pointer to the GMT hit collection in the i-th module.
Float_t getSigmaY() const
Position in Y.
Float_t getAdcX() const
ADC in X.
Float_t getLocalX() const
Local X coordinate.
EventT * fEvent
current Tree number in a TChain
Float_t getLocalY() const
Local Y coordinate.
Int_t getModule() const
Module.
Holds collection of GMT hits in the module.
double cx(double s) const
pointing vector of helix at point s
Holds data for the hit in GMT.
pair< double, double > pathLength(double r) const
path length at given r (cylindrical r)
Float_t getSigmaX() const
Position in X.
Float_t getErrorLocalY() const
Local Y coordinate error.
Float_t getAdcY() const
ADC in Y.
StSPtrVecGmtHit & getHitVec()
Vector of hits that belong to the module.
Float_t getErrorAdcX() const
ADC error in X.
Float_t getErrorSigmaY() const
Position error in X.