-
Notifications
You must be signed in to change notification settings - Fork 1
/
HistMuCapMuonRange.h
49 lines (37 loc) · 1012 Bytes
/
HistMuCapMuonRange.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
// Andrei Gaponenko, 2015
#ifndef HistMuCapMuonRange_h
#define HistMuCapMuonRange_h
#include <string>
#include "WireCluster.h"
class TH1;
class TH2;
class HistogramFactory;
class ConfigFile;
class DetectorGeo;
class EventClass;
class PlaneRange;
//================================================================
class HistMuCapMuonRange {
public:
void init(HistogramFactory& hf,
const std::string& hdir,
const DetectorGeo& geom,
const ConfigFile& conf);
void fill(const PlaneRange& muonRange, const ClustersByPlane& globalPlaneClusters, const EventClass& evt);
HistMuCapMuonRange()
: doMCTruth_()
, hMuonLastPlane_()
, hMuonRangeGaps_()
, hMuonMissingPlanes_()
, hTruePProtonVsLastPlane_()
, hTruePDeuteronVsLastPlane_()
{}
private :
bool doMCTruth_;
TH1 *hMuonLastPlane_;
TH2 *hMuonRangeGaps_;
TH1 *hMuonMissingPlanes_;
TH2 *hTruePProtonVsLastPlane_;
TH2 *hTruePDeuteronVsLastPlane_;
};
#endif/*HistMuCapMuonRange_h*/