ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/AnaTools/plugins/OSUAnalysis.h
Revision: 1.20
Committed: Wed Mar 27 22:38:08 2013 UTC (12 years, 1 month ago) by wulsin
Content type: text/plain
Branch: MAIN
Changes since 1.19: +4 -0 lines
Log Message:
add PU-correction of isolation energy for BNtrack, also added track-event pair input collection

File Contents

# User Rev Content
1 lantonel 1.1 #ifndef OSU_ANALYSIS
2    
3     #define OSU_ANALYSIS
4    
5     #include <map>
6     #include <string>
7     #include <vector>
8 jbrinson 1.13
9     #include <fstream>
10     #include <iostream>
11 lantonel 1.12 #include <algorithm>
12 lantonel 1.6 #include "TH1.h"
13 lantonel 1.9 #include "TH2.h"
14 lantonel 1.1 #include "TH1D.h"
15     #include "TH2D.h"
16     #include "TLorentzVector.h"
17    
18     #include "FWCore/Framework/interface/EDAnalyzer.h"
19     #include "FWCore/Framework/interface/Event.h"
20     #include "FWCore/Framework/interface/EventSetup.h"
21     #include "FWCore/ParameterSet/interface/ParameterSet.h"
22     #include "FWCore/ServiceRegistry/interface/Service.h"
23     #include "DataFormats/Common/interface/Handle.h"
24     #include "CommonTools/UtilAlgos/interface/TFileService.h"
25     #include "FWCore/Framework/interface/MakerMacros.h"
26 lantonel 1.10 #include "DataFormats/Math/interface/deltaPhi.h"
27     #include "DataFormats/Math/interface/deltaR.h"
28 lantonel 1.1
29     #include "ProductArea/BNcollections/interface/BNbxlumi.h"
30     #include "ProductArea/BNcollections/interface/BNelectron.h"
31     #include "ProductArea/BNcollections/interface/BNevent.h"
32     #include "ProductArea/BNcollections/interface/BNjet.h"
33     #include "ProductArea/BNcollections/interface/BNmcparticle.h"
34     #include "ProductArea/BNcollections/interface/BNmet.h"
35     #include "ProductArea/BNcollections/interface/BNmuon.h"
36     #include "ProductArea/BNcollections/interface/BNphoton.h"
37     #include "ProductArea/BNcollections/interface/BNprimaryvertex.h"
38     #include "ProductArea/BNcollections/interface/BNskimbits.h"
39     #include "ProductArea/BNcollections/interface/BNsupercluster.h"
40     #include "ProductArea/BNcollections/interface/BNtrack.h"
41     #include "ProductArea/BNcollections/interface/BNtrigger.h"
42     #include "ProductArea/BNcollections/interface/BNtrigobj.h"
43     #include "ProductArea/BNcollections/interface/BNtau.h"
44     #include "ProductArea/BNcollections/interface/BNgenjet.h"
45    
46     #include "OSUT3Analysis/AnaTools/interface/CutFlow.h"
47 lantonel 1.9 #include "OSUT3Analysis/AnaTools/interface/PUWeight.h"
48 ahart 1.16 #include "OSUT3Analysis/AnaTools/interface/SFWeight.h"
49 lantonel 1.1
50    
51    
52    
53     using namespace std;
54    
55     class OSUAnalysis : public edm::EDAnalyzer
56     {
57     public:
58     OSUAnalysis (const edm::ParameterSet &);
59     ~OSUAnalysis ();
60    
61     void analyze (const edm::Event &, const edm::EventSetup &);
62     bool evaluateComparison (double, string, double);
63 lantonel 1.2 bool evaluateTriggers (vector<string>,const BNtriggerCollection*);
64 lantonel 1.3 double applyFunction(string, double);
65    
66 lantonel 1.4 double valueLookup (const BNjet* object, string variable, string function = "");
67     double valueLookup (const BNmuon* object, string variable, string function = "");
68 lantonel 1.10 double valueLookup (const BNmuon* object1, const BNmuon* object2, string variable, string function = "");
69 lantonel 1.4 double valueLookup (const BNelectron* object, string variable, string function = "");
70 lantonel 1.10 double valueLookup (const BNelectron* object1, const BNelectron* object2, string variable, string function = "");
71     double valueLookup (const BNelectron* object1, const BNmuon* object2, string variable, string function = "");
72 jbrinson 1.19 double valueLookup (const BNelectron* object1, const BNtrack* object2, string variable, string function = "");
73     double valueLookup (const BNmuon* object1, const BNtrack* object2, string variable, string function = "");
74     double valueLookup (const BNmuon* object1, const BNtau* object2, string variable, string function = "");
75     double valueLookup (const BNtau* object1, const BNtau* object2, string variable, string function = "");
76 lantonel 1.4 double valueLookup (const BNevent* object, string variable, string function = "");
77     double valueLookup (const BNtau* object, string variable, string function = "");
78     double valueLookup (const BNmet* object, string variable, string function = "");
79     double valueLookup (const BNtrack* object, string variable, string function = "");
80 wulsin 1.20 double valueLookup (const BNtrack* object1, const BNevent* object2, string variable, string function = "");
81 lantonel 1.4 double valueLookup (const BNgenjet* object, string variable, string function = "");
82     double valueLookup (const BNmcparticle* object, string variable, string function = "");
83     double valueLookup (const BNprimaryvertex* object, string variable, string function = "");
84     double valueLookup (const BNbxlumi* object, string variable, string function = "");
85     double valueLookup (const BNphoton* object, string variable, string function = "");
86     double valueLookup (const BNsupercluster* object, string variable, string function = "");
87 jbrinson 1.14
88 jbrinson 1.13 int getTrkIsIso (const BNtrack* track1, const BNtrackCollection* trackColl);
89 jbrinson 1.14 double getTrkPtTrue (const BNtrack* track1, const BNmcparticleCollection* genPartColl);
90     double getTrkPtRes (const BNtrack* track1);
91     double getTrkIsIso (const BNtrack* track1);
92 wulsin 1.20 double getTrkCaloTotRhoCorr(const BNtrack* track);
93 jbrinson 1.13 void WriteDeadEcal ();
94     int getTrkIsMatchedDeadEcal (const BNtrack* track1);
95    
96 lantonel 1.1 //BNskimbits
97     //BNtrigobj
98    
99     vector<string> splitString (string);
100    
101    
102     private:
103    
104     //flagMap:
105     //string holds input collection type
106     //outer vector corresponds to each cut
107     //inner vector corresponds to each object in input collection
108     //bool tells if object passes or fails cuts
109     typedef map<string, vector < vector<bool> > > flagMap;
110 ahart 1.16
111 lantonel 1.1 //counterMap:
112     //string holds input collection type
113     //vector corresponds to each cut
114     //int holds number of objects passing all cuts up to that point
115     typedef map<string ,vector <int> > counterMap;
116    
117     // Remember to define parameters to be retrieved from the configuration file.
118     edm::InputTag jets_;
119     edm::InputTag muons_;
120     edm::InputTag electrons_;
121     edm::InputTag events_;
122     edm::InputTag taus_;
123     edm::InputTag mets_;
124     edm::InputTag tracks_;
125     edm::InputTag genjets_;
126     edm::InputTag mcparticles_;
127     edm::InputTag primaryvertexs_;
128     edm::InputTag bxlumis_;
129     edm::InputTag photons_;
130     edm::InputTag superclusters_;
131 lantonel 1.2 edm::InputTag triggers_;
132 lantonel 1.9 std::string puFile_;
133 jbrinson 1.13 std::string deadEcalFile_;
134 ahart 1.16 std::string muonSFFile_;
135 lantonel 1.9 std::string dataPU_;
136 ahart 1.16 std::string electronSFID_;
137     std::string muonSF_;
138 lantonel 1.9 std::string dataset_;
139     std::string datasetType_;
140 lantonel 1.1 vector<edm::ParameterSet> channels_;
141 lantonel 1.4 vector<edm::ParameterSet> histogramSets_;
142 lantonel 1.9 bool plotAllObjectsInPassingEvents_;
143 lantonel 1.15 bool doPileupReweighting_;
144 wulsin 1.18 bool printEventInfo_;
145 wulsin 1.20 bool useTrackCaloRhoCorr_; // to use the calo-based rho correction for the by-hand calculation of the track isolation energy
146 lantonel 1.1
147 jbrinson 1.13 struct DeadEcal {
148 ahart 1.16 double etaEcal;
149     double phiEcal;
150 jbrinson 1.13 };
151 ahart 1.16
152 jbrinson 1.13 std::vector<DeadEcal> DeadEcalVec;
153    
154 jbrinson 1.14
155 jbrinson 1.13 //Collections
156 lantonel 1.11 edm::Handle<BNtriggerCollection> triggers;
157     edm::Handle<BNjetCollection> jets;
158     edm::Handle<BNmuonCollection> muons;
159     edm::Handle<BNelectronCollection> electrons;
160     edm::Handle<BNeventCollection> events;
161     edm::Handle<BNtauCollection> taus;
162     edm::Handle<BNmetCollection> mets;
163     edm::Handle<BNtrackCollection> tracks;
164     edm::Handle<BNgenjetCollection> genjets;
165     edm::Handle<BNmcparticleCollection> mcparticles;
166     edm::Handle<BNprimaryvertexCollection> primaryvertexs;
167     edm::Handle<BNbxlumiCollection> bxlumis;
168     edm::Handle<BNphotonCollection> photons;
169     edm::Handle<BNsuperclusterCollection> superclusters;
170 wulsin 1.20 edm::Handle<double> rhokt6CaloJetsHandle_;
171 lantonel 1.11
172 ahart 1.16 flagMap cumulativeFlags;
173 lantonel 1.8
174 lantonel 1.1 vector<map<string, TH1D*> > oneDHists_;
175 lantonel 1.6 vector<map<string, TH2D*> > twoDHists_;
176 lantonel 1.1
177     edm::Service<TFileService> fs_;
178    
179     CutFlow *masterCutFlow_;
180     vector<CutFlow *> cutFlows_;
181    
182 lantonel 1.4 typedef struct {
183 ahart 1.16 string name;
184     string title;
185     vector<double> bins;
186     string inputCollection;
187     vector<string> inputVariables;
188 lantonel 1.4 } histogram;
189 lantonel 1.1
190     struct cut {
191 ahart 1.16 string inputCollection;
192     vector<string> functions;
193     vector<string> variables;
194     vector<string> comparativeOperators;// >, <, =, etc.
195     vector<double> cutValues;
196     vector<string> logicalOperators;//and, or
197     int numSubcuts;
198     int numberRequired;
199     string eventComparativeOperator;
200     string name;
201 lantonel 1.1 };
202    
203     struct channel {
204 ahart 1.16 string name;
205     vector<string> triggers;
206     vector<cut> cuts;
207 lantonel 1.1 };
208    
209 lantonel 1.12 vector<string> objectsToGet;
210     vector<string> objectsToCut;
211 lantonel 1.4 vector<string> objectsToPlot;
212 lantonel 1.1 vector<channel> channels;
213 lantonel 1.4 vector<histogram> histograms;
214 lantonel 1.1
215 lantonel 1.9 PUWeight *puWeight_;
216 ahart 1.16 MuonSFWeight *muonSFWeight_;
217     ElectronSFWeight *electronSFWeight_;
218 lantonel 1.9
219 lantonel 1.1 template <class InputCollection> void setObjectFlags(cut &, uint, flagMap &, flagMap &, InputCollection, string);
220 lantonel 1.12 template <class InputCollection1, class InputCollection2> void setObjectFlags(cut &, uint, flagMap &, flagMap &, InputCollection1, InputCollection2, vector<bool>, vector<bool>, string);
221    
222 lantonel 1.10 template <class InputCollection> void fill1DHistogram(TH1*, histogram, InputCollection, vector<bool>, double);
223     template <class InputCollection1, class InputCollection2> void fill1DHistogram(TH1*, histogram, InputCollection1, InputCollection2, vector<bool>, vector<bool>, vector<bool>, double);
224     template <class InputCollection> void fill2DHistogram(TH2*, histogram, InputCollection, vector<bool>, double);
225     template <class InputCollection1, class InputCollection2> void fill2DHistogram(TH2*, histogram, InputCollection1, InputCollection2, vector<bool>, vector<bool>, vector<bool>, double);
226 lantonel 1.1
227 lantonel 1.11 template <class InputObject> int getGenMatchedParticleIndex(InputObject);
228     int getPdgIdBinValue(int);
229     int findTauMotherIndex(const BNmcparticle*);
230    
231 jbrinson 1.17 template <class InputObject> double getGenDeltaRLowest(InputObject);
232    
233    
234 ahart 1.16 const BNprimaryvertex *chosenVertex ();
235     const BNmet *chosenMET ();
236     const BNelectron *chosenElectron ();
237     const BNmuon *chosenMuon ();
238 jbrinson 1.13
239 lantonel 1.1 };
240    
241     #endif