forked from LUHEP/NA61_Analysis_2
-
Notifications
You must be signed in to change notification settings - Fork 0
/
NA61_LRC_2_Cut.h
536 lines (478 loc) · 12.3 KB
/
NA61_LRC_2_Cut.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
#ifndef SHINELIB
#define SHINELIB
#include <evt/Event.h>
#include <evt/RecEvent.h>
#include <evt/rec/Trigger.h>
#include <fwk/CentralConfig.h>
#include <utl/ShineUnits.h>
#include <io/EventFile.h>
#include <io/EventFileChain.h>
#include <utl/ShineUnits.h>
#include <evt/rec/RecEventConst.h>
#include <det/TriggerConst.h>
#include <utl/MathConst.h>
#include <utl/PhysicalConst.h>
#include <det/TPCConst.h>
#include <det/Target.h>
#include <det/TargetConst.h>
#include <det/PSD.h>
#include <det/BPD.h>
#include <det/Beam.h>
#include <det/Detector.h>
#include <evt/EventHeader.h>
#endif
#ifndef ROOTLIB
#define ROOTLIB
#include <TFile.h>
#include <TH1D.h>
#include <TH1F.h>
#include <TH2D.h>
#include <TH3D.h>
#include <TCutG.h>
#include <TProfile.h>
#include <TList.h>
#include <TString.h>
#include <TMath.h>
#include <utl/Vector.h>
#include <TCanvas.h>
#include <TF1.h>
#include <TLegend.h>
#include <THnSparse.h>
#endif
#include <TRandom.h>
#include <vector>
#include <iostream>
#include <fstream>
#ifndef CENTRALITY
#define CENTRALITY
#include "NA61_LRC_2_Centrality.h"
#endif
using namespace std;
using namespace io;
using namespace utl;
using namespace evt;
using namespace evt::rec;
class Cut
{
public:
Cut(){myNEntries=0;}
virtual ~Cut() {}
virtual bool CheckEvent(Event& event, bool bSim) {}
virtual bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack) {}
virtual bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack) {}
virtual TString GetName() {return my_Name;}
virtual TString GetShortName() {return my_Short_Name;}
virtual TString GetShortNameWithPar() {}
int GetNEntries() {return myNEntries;}
void nEntriesPlusPlus() {myNEntries++;}
void nEntriesMinusMinus() { myNEntries--; }
virtual bool DoYouNeedMultiplicity() { return false; }
virtual void SetMultiplicity(unsigned int mult) {}
protected:
int myNEntries;
TString my_Name;
TString my_Short_Name;
};
class EventCut:public Cut
{
public:
EventCut();
virtual ~EventCut(){}
virtual bool CheckEvent(Event& event, bool bSim) {}
virtual TString GetShortNameWithPar() {}
protected:
};
class T2Cut:public EventCut
{
public:
T2Cut();
~T2Cut(){}
TString GetShortNameWithPar() { return my_Short_Name;}
bool CheckEvent(Event& event, bool bSim);
private:
};
class S1_1Cut:public EventCut
{
public:
S1_1Cut();
~S1_1Cut(){}
TString GetShortNameWithPar() { return my_Short_Name;}
bool CheckEvent(Event& event, bool bSim);
private:
};
class WFACut:public EventCut
{
public:
WFACut();
WFACut(double wfa_Time1, double wfa_Time2, double wfa_TimeCut);
~WFACut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
const double myWfaTime1;
const double myWfaTime2;
const double myWfaTimeCut;
};
class ChargeCut:public EventCut
{
public:
ChargeCut();
ChargeCut(string configPath); //???
~ChargeCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar() { return my_Short_Name;}
private:
const string myConfigPath;
static TFile zFile;
static TCutG* zCut;
};
class BPDCut:public EventCut
{
public:
BPDCut();
~BPDCut(){}
TString GetShortNameWithPar() { return my_Short_Name;}
bool CheckEvent(Event& event, bool bSim);
private:
};
class DirectBPDCut :public EventCut
{
public:
DirectBPDCut(double minX, double maxX, double minY, double maxY, eMyBPD bpd);
~DirectBPDCut(){}
TString GetShortNameWithPar();
bool CheckEvent(Event& event, bool bSim);
private:
DirectBPDCut();
double myMinX;
double myMaxX;
double myMinY;
double myMaxY;
eMyBPD myBPD;
};
class MainVertexCut:public EventCut
{
public:
MainVertexCut();
~MainVertexCut(){}
TString GetShortNameWithPar() { return my_Short_Name;}
bool CheckEvent(Event& event, bool bSim);
private:
};
class FittedVertexCut:public EventCut
{
public:
FittedVertexCut();
~FittedVertexCut(){}
TString GetShortNameWithPar() { return my_Short_Name;}
bool CheckEvent(Event& event, bool bSim);
private:
};
class FitQualityCut:public EventCut
{
public:
FitQualityCut();
FitQualityCut(Int_t qual);
~FitQualityCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
//char* GetName() {return "FitQual";}
private:
const Int_t my_Quality;
};
class NVertexTracksCut:public EventCut
{
public:
NVertexTracksCut();
NVertexTracksCut(unsigned int nVtxTrack);
~NVertexTracksCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
const unsigned int myMinNVtxTrack;
};
class ZVertexCut:public EventCut
{
public:
ZVertexCut();
ZVertexCut(double minZ, double maxZ);
~ZVertexCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
const double myMinVtxZ;
const double myMaxVtxZ;
};
class CentralityCut:public EventCut
{
public:
CentralityCut(double lowPer, double upPer, bool bRaw);
~CentralityCut(){}
void InitLegacyCentrality();
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
CentralityCut();
double myMinEPSD;
double myMaxEPSD;
const double myLowPer;
const double myUpPer;
LegacyCentrality* pDetermineCentrality;
bool bInit;
};
class MultPSDCloudCut : public EventCut
{
public:
MultPSDCloudCut(bool bRaw, ePSDNClouds eCloud);
~MultPSDCloudCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
bool DoYouNeedMultiplicity();
void SetMultiplicity(unsigned int mult) { myMultiplicity = mult; }
private:
MultPSDCloudCut();
ePSDNClouds myECloud;
static TCutG *myTCutG;
bool bInit;
unsigned int myMultiplicity;
};
class TrackCut:public Cut
{
public:
TrackCut(){}
virtual ~TrackCut(){}
virtual bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack) {}
virtual bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack) {}
virtual TString GetShortNameWithPar() {}
private:
};
class VtxTrackStatusCut:public TrackCut
{
public:
VtxTrackStatusCut();
~VtxTrackStatusCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar() { return my_Short_Name;}
private:
};
class ImpactPointCut:public TrackCut
{
public:
ImpactPointCut();
ImpactPointCut(double maxX, double maxY);
~ImpactPointCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
const double myMaxImpX;
const double myMaxImpY;
};
class VTPCAndGTPCClustersCut:public TrackCut
{
public:
VTPCAndGTPCClustersCut();
VTPCAndGTPCClustersCut(unsigned int minVTPC, unsigned int minGTPC);
~VTPCAndGTPCClustersCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
const unsigned int myMinVTPCClusters;
const unsigned int myMinGTPCClusters;
};
class TotalTPCClustersCut:public TrackCut
{
public:
TotalTPCClustersCut();
TotalTPCClustersCut(unsigned int minTotal);
~TotalTPCClustersCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
const unsigned int myMinTotalClusters;
};
class TOFCut:public TrackCut
{
public:
TOFCut();
~TOFCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar() { return my_Short_Name;}
private:
};
class PtCut:public TrackCut
{
public:
PtCut();
PtCut(double min_Pt, double max_Pt);
~PtCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
const double myMaxPt;
const double myMinPt;
};
class PCut:public TrackCut
{
public:
PCut();
PCut(double min_P, double max_P);
~PCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
const double myMaxP;
const double myMinP;
};
class AcceptCut:public TrackCut
{
public:
AcceptCut();
AcceptCut(TString configPath);
~AcceptCut();
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar() { return my_Short_Name;}
private:
const TString myConfigPath;
TH3D* itsAcceptHist;
double_t myXAxLowEdge, myYAxLowEdge, myZAxLowEdge;
double_t myXAxBinWidth, myYAxBinWidth, myZAxBinWidth;
unsigned int myNXBins, myNYBins, myNZBins;
};
class AcceptRapidityCut :public TrackCut
{
public:
AcceptRapidityCut();
~AcceptRapidityCut();
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar() { return my_Short_Name; }
private:
TString myPath;
//TH3C* myAcceptHist;
TH3F* myAcceptHist;
double myXAxLowEdge, myYAxLowEdge, myZAxLowEdge;
double myXAxBinWidth, myYAxBinWidth, myZAxBinWidth;
double myNXBins, myNYBins, myNZBins;
};
class EtaCut:public TrackCut
{
public:
EtaCut(double minEta, double maxEta);
~EtaCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
EtaCut();
const double myMinEta;
const double myMaxEta;
};
class PhiCut:public TrackCut //phi = [-pi;pi]
{
public:
PhiCut(double minPhi, double maxPhi);
~PhiCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
PhiCut();
const double myMinPhi;
const double myMaxPhi;
};
class ChargeTrCut: public TrackCut
{
public:
ChargeTrCut(int redCh);
~ChargeTrCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
ChargeTrCut();
const int myCharge;
};
class DiluteCut: public TrackCut
{
public:
DiluteCut(double remove_track_percent);
~DiluteCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
DiluteCut();
double my_remove_track_percent;
};
class eeCut : public TrackCut
{
public:
eeCut();
~eeCut(){}
bool CheckTrack(RecEvent& recEvent, const VertexTrack& vtxTrack);
bool CheckTrack(SimEvent& simEvent, const evt::sim::VertexTrack& vtxTrack);
TString GetShortNameWithPar();
private:
static TCutG *myTCutG;
};
class StrangeCut: public TrackCut
{
public:
StrangeCut();
// ~StrangeCut();
bool CheckTrack ( SimEvent& simEvent, const sim::VertexTrack& vtxTrack );
bool CheckTrack ( RecEvent& recEvent, const VertexTrack& vtxTrack ) {};
TString GetShortNameWithPar();
private:
static const int strangeIdList[];
static const int strangeIdListLength;
};
class PSDEnergyCut :public EventCut
{
public:
PSDEnergyCut(double lowE, double upE, ePSDModulCombinations ePSDSet, bool bRaw);
~PSDEnergyCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
PSDEnergyCut();
double myMinEPSD;
double myMaxEPSD;
bool myBRaw;
ePSDModulCombinations myPSDModSet;
bool myPSDModArray[45];
};
class S5Cut :public EventCut
{
public:
S5Cut(double upLimit, bool bRaw);
~S5Cut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
S5Cut();
double myUpLimit;
bool myBRaw;
};
//Run number cut, for example if you want to analyse a special set of runs
class RunNumberCut : public EventCut
{
public:
RunNumberCut(int lowLimit, int upLimit, bool bRaw);
~RunNumberCut(){}
bool CheckEvent(Event& event, bool bSim);
TString GetShortNameWithPar();
private:
RunNumberCut();
int myLowLim;
int myUpLim;
bool myBRaw;
};