Skip to content
This repository has been archived by the owner on May 18, 2023. It is now read-only.

Commit

Permalink
open lower bound on time selection
Browse files Browse the repository at this point in the history
  • Loading branch information
zieglerv committed Dec 16, 2017
1 parent eee97d6 commit 6eb4716
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -157,7 +157,7 @@ public void fetch_DCHits(DataEvent event, Clas12NoiseAnalysis noiseAnalysis, Noi
double T0Sub = smearedTime[i] - T_0;
//double TMax = CCDBConstants.getTMAXSUPERLAYER()[sector[i]-1][superlayerNum[i]-1];
double TMax = tab.getDoubleValue("tmax", sector[i], superlayerNum[i] ,0);
if(T0Sub>-50 && T0Sub<TMax+150) { // cut on spurious hits
if(T0Sub>-500 && T0Sub<TMax+150) { // cut on spurious hits
//Hit hit = new Hit(sector[i], superlayerNum[i], layerNum[i], wire[i], smearedTime[i], 0, 0, hitno[i]);
Hit hit = new Hit(sector[i], superlayerNum[i], layerNum[i], wire[i], smearedTime[i], 0, 0, (i + 1));
hit.set_CellSize(DcDetector);
Expand Down

0 comments on commit 6eb4716

Please sign in to comment.