forked from CMSAachen3B/PlottingTool
-
Notifications
You must be signed in to change notification settings - Fork 0
/
userConfig.h
29 lines (23 loc) · 859 Bytes
/
userConfig.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
#ifndef userConfig_h
#define userConfig_h
/////////////////////////////////////////////////
//
// userConfig: main place for user input
// define all needed stuff here
//
/////////////////////////////////////////////////
#include "configInfo.h"
// flags for testing
bool verbose = false;
bool testPlotting = false;
// draw signal stacked on top (or overlaying)
// todo: needs to be implemented. does nothing yet.
bool signaltop = false;
// create configInfo struct
double lumi = 19712.;
TString infile = "/net/scratch_cms/institut_3b/kargoll/Taus30GeV/Categories/workdirAnalysis_Nov_04_2014/LOCAL_COMBINED_inclusive_default_LumiScaled.root";
TString ident = "inclusive_default_";
bool isLumiScaled = false; // specify if input root file is already scaled to lumi
// define user-specific config
configInfo conf(infile, isLumiScaled, ident, lumi);
#endif