-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathSampleInfo.h
39 lines (29 loc) · 847 Bytes
/
SampleInfo.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
#ifndef SampleInfo_h
#define SampleInfo_h
#include "TString.h"
class SampleInfo
{
public:
SampleInfo( float Lumi_,float NEvents_,float CrossSection_,TString FilePath_, TString LegendLabel_,TString OutputFileNameTag_,int color_): Lumi(Lumi_),NEvents(NEvents_), CrossSection(CrossSection_),FilePath(FilePath_),LegendLabel(LegendLabel_),OutputFileNameTag(OutputFileNameTag_), color(color_))
{;}
;
float weight();
private:
float Lumi;
float NEvents; // number of events before any skimmming in MC
float CrossSection; // put -1 for data
TString FilePath;
TString LegendLabel;
TString OutputFileNameTag;
int color;
};
float SampleInfo::weight()
{
if(CrossSection==-2) return 1.; // for scans
if(CrossSection==-1) return 1.; // for data
else
{
return (CrossSection/NEvents*Lumi*1000);
}
};
#endif