diff --git a/examples/output.def b/examples/output.def index a8fb8536136ab159c7df20d0efdde3af357b6e76..9797fc3f001a509dfecd0f59fefa1958a7177c2d 100644 --- a/examples/output.def +++ b/examples/output.def @@ -4,6 +4,7 @@ block H.dc.* block H.hod.* block H.cal.* block H.aero.* +block H.tr.* block g.evtyp # TDC hits per paddle diff --git a/src/THcDC.cxx b/src/THcDC.cxx index 9db5723dc43b0c49c7d495968efc8b3237b6305d..d596df05a221ed823474daf7566788264b503051 100644 --- a/src/THcDC.cxx +++ b/src/THcDC.cxx @@ -459,7 +459,7 @@ Int_t THcDC::ApplyCorrections( void ) } //_____________________________________________________________________________ -Int_t THcDC::CoarseTrack( TClonesArray& /* tracks */ ) +Int_t THcDC::CoarseTrack( TClonesArray& tracks ) { // Calculation of coordinates of particle track cross point with scint // plane in the detector coordinate system. For this, parameters of track @@ -475,7 +475,26 @@ Int_t THcDC::CoarseTrack( TClonesArray& /* tracks */ ) } // Now link the stubs between chambers LinkStubs(); - if(fNDCTracks > 0) TrackFit(); + if(fNDCTracks > 0) { + TrackFit(); + // Copy tracks into podd tracks list + for(Int_t itrack=0;itrack<fNDCTracks;itrack++) { + THaTrack* theTrack = NULL; + theTrack = AddTrack(tracks, 0.0, 0.0, 0.0, 0.0); // Leaving off trackID + // Should we add stubs with AddCluster? + + THcDCTrack *tr = static_cast<THcDCTrack*>( fDCTracks->At(itrack)); + theTrack->SetD(tr->GetX(), tr->GetY(), tr->GetXP(), tr->GetYP()); + theTrack->SetFlag((UInt_t) 0); + Int_t nhits=tr->GetNHits(); + // Need to look at how engine does chi2 and track selection. Reduced? + theTrack->SetChi2(tr->GetChisq(),nhits-4); // Nconstraints - Nparameters + // CalcFocalPlaneCoords. Aren't our tracks already in focal plane coords + // We should have some kind of track ID so that the THaTrack can be + // associate back with the DC track + } + } + // Check for internal TrackFit errors // Histogram the focal plane tracks // Histograms made in h_fill_dc_fp_hist diff --git a/src/THcDCTrack.h b/src/THcDCTrack.h index 1964c76bcce9b1458a20c4a787a4f9fd834ac274..d13c774f5ec755e7d34bfb42f145893f4abad505 100644 --- a/src/THcDCTrack.h +++ b/src/THcDCTrack.h @@ -40,6 +40,7 @@ public: Double_t GetY() const {return fY_fp;} Double_t GetXP() const {return fXp_fp;} Double_t GetYP() const {return fYp_fp;} + Double_t GetChisq() const {return fChi2_fp;} void SetNFree(Int_t nfree) {fNfree = nfree;} void SetCoord(Int_t ip, Double_t coord) {fCoords[ip] = coord;} void SetResidual(Int_t ip, Double_t coord) {fResiduals[ip] = coord;}