Skip to content
Snippets Groups Projects
Commit 230751ab authored by Mark Jones's avatar Mark Jones
Browse files

Modify THcCoinTime.cxx to skipp events with fptime=-1000

fptime=-1000 means that there the number of good scintillator
hits found was zero for the event.
parent 30be04cc
No related branches found
No related tags found
1 merge request!1Update april2020
......@@ -262,6 +262,7 @@ Int_t THcCoinTime::Process( const THaEvData& evdata )
Double_t HMS_FPtime = theHMSTrack->GetFPTime();
if (SHMS_FPtime==-2000 || HMS_FPtime==-2000) return 1;
if (SHMS_FPtime==-1000 || HMS_FPtime==-1000) return 1;
//Get raw TDC Times for HMS/SHMS (3/4 trigger)
pTRIG1_TdcTime_ROC1 = fCoinDet->Get_CT_Trigtime(0); //SHMS
......
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