Skip to content
Snippets Groups Projects
Commit 0cd835a1 authored by Stephen A. Wood's avatar Stephen A. Wood
Browse files

Fix spoint logic and incorrect use of isp2.

Set 2d histogram limits on tracking results.
parent f1fb954f
No related branches found
No related tags found
No related merge requests found
......@@ -9,11 +9,11 @@
c1->cd(2);
T->Draw("H.dc.ntrack");
c1->cd(3);
T->Draw("H.dc.x:H.dc.y");
T->Draw("H.dc.x:H.dc.y>>h(,-20,20,,-50,50)");
c1->cd(4);
T->Draw("H.dc.x:H.dc.xp");
T->Draw("H.dc.x:H.dc.xp>>h(,-0.08,0.08,,-50,50");
c1->cd(5);
T->Draw("H.dc.y:H.dc.yp");
T->Draw("H.dc.y:H.dc.yp>>h(,-0.08,0.08,,-20,20");
c1->cd(6);
T->Draw("H.dc.xp:H.dc.yp");
T->Draw("H.dc.xp:H.dc.yp>>h(,-0.08,0.08,,-0.08,0.08");
}
......@@ -548,7 +548,7 @@ void THcDC::LinkStubs()
if (fDebugDC) cout << "Fsinglestub (no = 0) = " << fSingleStub << endl;
if (fDebugDC) cout << "Joined space points = " << fNSp-1 << endl;
if(!fSingleStub) {
for(Int_t isp1=0;isp1<fNSp-1;isp1++) {
for(Int_t isp1=0;isp1<fNSp-1;isp1++) { // isp1 is index/id in total list of space points
if (fDebugDC) cout << "Loop thru joined space points " << isp1+1<< endl;
Int_t sptracks=0;
// Now make sure this sp is not already used in a sp.
......@@ -557,6 +557,7 @@ void THcDC::LinkStubs()
for(Int_t itrack=0;itrack<fNDCTracks;itrack++) {
THcDCTrack *theDCTrack = static_cast<THcDCTrack*>( fDCTracks->At(itrack));
for(Int_t isp=0;isp<theDCTrack->GetNSpacePoints();isp++) {
// isp is index into list of space points attached to theDCTrack
if(theDCTrack->GetSpacePointID(isp) == isp1) {
tryflag=0;
}
......@@ -623,10 +624,11 @@ void THcDC::LinkStubs()
Int_t track=stub_tracks[itrack];
THcDCTrack *theDCTrack = static_cast<THcDCTrack*>( fDCTracks->At(track));
Int_t spoint=0;
Int_t spoint=-1;
Int_t duppoint=0;
if (fDebugDC) cout << "checking abother sp pt in cham track = " << itrack+1 << " with # sp pts = " << theDCTrack->GetNSpacePoints() << endl;
for(Int_t isp=0;isp<theDCTrack->GetNSpacePoints();isp++) {
// isp is index of space points in theDCTrack
if (fDebugDC) cout << "looping of previous track = " << isp+1 << endl;
if(fSp[isp2]->fNChamber ==
fSp[theDCTrack->GetSpacePointID(isp)]->fNChamber) {
......@@ -639,7 +641,7 @@ void THcDC::LinkStubs()
// If there is no other space point in this chamber
// add this space point to current track(2)
if(!duppoint) {
if(!spoint) {
if(spoint<0) {
theDCTrack->AddSpacePoint(isp2);
} else {
// If there is another point in the same chamber
......@@ -654,7 +656,7 @@ void THcDC::LinkStubs()
if(isp!=spoint) {
newDCTrack->AddSpacePoint(theDCTrack->GetSpacePointID(isp));
} else {
newDCTrack->AddSpacePoint(theDCTrack->GetSpacePointID(isp2));
newDCTrack->AddSpacePoint(isp2);
} // End check for dup on copy
if (fDebugDC) cout << "newDCtrack # of sp tps = " << newDCTrack->GetNSpacePoints() << endl;
} // End copy of track
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment