forked from wverbeke/ewkino
-
Notifications
You must be signed in to change notification settings - Fork 1
/
codeLibrary.cc
78 lines (73 loc) · 2.76 KB
/
codeLibrary.cc
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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
//include object code
#include "objects/src/LorentzVector.cc"
#include "objects/src/PhysicsObject.cc"
#include "objects/src/Lepton.cc"
#include "objects/src/LightLepton.cc"
#include "objects/src/Muon.cc"
#include "objects/src/Electron.cc"
#include "objects/src/Tau.cc"
#include "objects/src/Jet.cc"
#include "objects/src/Met.cc"
#include "objects/src/LeptonGeneratorInfo.cc"
#include "objects/src/LeptonSelector.cc"
#include "objects/src/GenMet.cc"
#include "objects/src/LeptonParticleLevel.cc"
#include "objects/src/JetParticleLevel.cc"
#include "objects/src/MetParticleLevel.cc"
#include "objectSelection/MuonSelector.cc"
#include "objectSelection/ElectronSelector.cc"
#include "objectSelection/TauSelector.cc"
#include "objectSelection/JetSelector.cc"
#include "objectSelection/bTagWP.cc"
//include Event code
#include "Event/src/LeptonCollection.cc"
#include "Event/src/MuonCollection.cc"
#include "Event/src/ElectronCollection.cc"
#include "Event/src/TauCollection.cc"
#include "Event/src/JetCollection.cc"
#include "Event/src/JetInfo.cc"
#include "Event/src/TriggerInfo.cc"
#include "Event/src/GeneratorInfo.cc"
#include "Event/src/SusyMassInfo.cc"
#include "Event/src/LeptonParticleLevelCollection.cc"
#include "Event/src/JetParticleLevelCollection.cc"
#include "Event/src/EventTags.cc"
#include "Event/src/Event.cc"
//include Tools code
#include "Tools/src/stringTools.cc"
#include "Tools/src/systemTools.cc"
#include "Tools/src/analysisTools.cc"
#include "Tools/src/IndexFlattener.cc"
#include "Tools/src/Categorization.cc"
#include "Tools/src/Sample.cc"
#include "Tools/src/mergeAndRemoveOverlap.cc"
#include "Tools/src/histogramTools.cc"
#include "Tools/src/SusyScan.cc"
#include "Tools/src/ConstantFit.cc"
#include "Tools/src/Prescale.cc"
#include "Tools/src/SampleCrossSections.cc"
#include "Tools/src/QuantileBinner.cc"
#include "Tools/src/mt2.cc"
#include "Tools/src/variableTools.cc"
#include "Tools/src/rootFileTools.cc"
#include "Tools/src/readFakeRateTools.cc"
#include "Tools/src/readChargeFlipTools.cc"
//include TreeReader code
#include "TreeReader/src/TreeReader.cc"
#include "TreeReader/src/TreeReaderErrors.cc"
//include plotting code
#include "plotting/src/drawLumi.cc"
#include "plotting/src/tdrStyle.cc"
#include "plotting/src/plotCode.cc"
//include Reweighter code
#include "weights/bTagSFCode/BTagCalibrationStandaloneUL.cc"
#include "weights/src/ReweighterBTag.cc"
#include "weights/src/ReweighterBTagHeavyFlavor.cc"
#include "weights/src/ReweighterBTagLightFlavor.cc"
#include "weights/src/ReweighterBTagShape.cc"
#include "weights/src/ReweighterPileup.cc"
#include "weights/src/ReweighterPrefire.cc"
#include "weights/src/ReweighterNJets.cc"
#include "weights/src/ReweighterEmpty.cc"
#include "weights/src/CombinedReweighter.cc"
#include "weights/src/ConcreteReweighterFactory.cc"