-
Notifications
You must be signed in to change notification settings - Fork 1
/
HistRangeStudies.h
50 lines (37 loc) · 1.01 KB
/
HistRangeStudies.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
// Various plots to understand the range vs p_rec discrepancy in the
// contained channel.
//
// Andrei Gaponenko, 2015
#ifndef HistRangeStudies_h
#define HistRangeStudies_h
#include <string>
#include "WireCluster.h"
#include "HistOccupancy.h"
class TH1;
class TH2;
class TProfile2D;
class HistogramFactory;
class ConfigFile;
class DetectorGeo;
class EventClass;
//================================================================
class HistRangeStudies {
public:
void init(HistogramFactory& hf,
const std::string& hdir,
const DetectorGeo& geom,
const ConfigFile& conf);
void fill(const EventClass& evt, int itrack, const ClustersByPlane& globalPlaneClusters);
private :
TH2* extendedVsTrackRange_;
TH2* rangeDiffVsPrec_;
TProfile2D *clusterMultiplicity_;
TH1* tdcWidthTrack_;
TH1* tdcWidthExtended_;
TH1* tdcMaxWidthTrack_;
TH1* tdcMaxWidthExtended_;
TH1* tdcMaxWidthDenseTrack_;
TH1* tdcMaxWidthDenseExtended_;
HistOccupancy hocc_;
};
#endif/*HistRangeStudies_h*/