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
|
#ifndef DPGAnalysis_SiStripTools_ClusMultPlots_h
#define DPGAnalysis_SiStripTools_ClusMultPlots_h
class TH1D;
class TFile;
void ClusMultPlots(const char* fullname,
const char* pxmod,
const char* strpmod,
const char* corrmod,
const char* pxlabel,
const char* strplabel,
const char* corrlabel,
const char* postfix,
const char* shortname,
const char* outtrunk);
void ClusMultInvestPlots(const char* fullname,
const char* mod,
const char* label,
const char* postfix,
const char* subdet,
const char* shortname,
const char* outtrunk);
void ClusMultCorrPlots(const char* fullname,
const char* mod,
const char* label,
const char* postfix,
const char* shortname,
const char* outtrunk);
void ClusMultVtxCorrPlots(const char* fullname,
const char* mod,
const char* label,
const char* postfix,
const char* subdet,
const char* shortname,
const char* outtrunk);
void ClusMultLumiCorrPlots(const char* fullname,
const char* mod,
const char* label,
const char* postfix,
const char* subdet,
const char* shortname,
const char* outtrunk);
#endif // DPGAnalysis_SiStripTools_ClusMultPlots_h
|