-
Notifications
You must be signed in to change notification settings - Fork 3
/
load_JEC.C
19 lines (15 loc) · 877 Bytes
/
load_JEC.C
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
{
// gROOT->ProcessLine(".exception"); // let exceptions pass CINT, easier to read
// Need to add this - matt
gROOT->ProcessLine(".L FWCore/Utilities/src/typelookup.cc+");
// For JEC residual (and pile-up)
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/Utilities.cc+");
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/JetCorrectorParameters.cc+");
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/SimpleJetCorrector.cc+");
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/FactorizedJetCorrector.cc+");
// For JEC uncertainty
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/SimpleJetCorrectionUncertainty.cc+");
gROOT->ProcessLine(".L CondFormats/JetMETObjects/src/JetCorrectionUncertainty.cc+");
// looks like Mikko's private stuff
// gROOT->ProcessLine(".L fillHistosInclB.C++g"); // g to compile in debug symbols
}