ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/OSUT3Analysis/AnaTools/plugins/OSUAnalysis.h
Revision: 1.19
Committed: Wed Mar 27 16:52:25 2013 UTC (12 years, 1 month ago) by jbrinson
Content type: text/plain
Branch: MAIN
Changes since 1.18: +4 -0 lines
Log Message:
Added d0wrtPV and dZwrtPV to BNtrack; Added several valuelookup functions for pairs of objects

File Contents

# Content
1 #ifndef OSU_ANALYSIS
2
3 #define OSU_ANALYSIS
4
5 #include <map>
6 #include <string>
7 #include <vector>
8
9 #include <fstream>
10 #include <iostream>
11 #include <algorithm>
12 #include "TH1.h"
13 #include "TH2.h"
14 #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 #include "DataFormats/Math/interface/deltaPhi.h"
27 #include "DataFormats/Math/interface/deltaR.h"
28
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 #include "OSUT3Analysis/AnaTools/interface/PUWeight.h"
48 #include "OSUT3Analysis/AnaTools/interface/SFWeight.h"
49
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 bool evaluateTriggers (vector<string>,const BNtriggerCollection*);
64 double applyFunction(string, double);
65
66 double valueLookup (const BNjet* object, string variable, string function = "");
67 double valueLookup (const BNmuon* object, string variable, string function = "");
68 double valueLookup (const BNmuon* object1, const BNmuon* object2, string variable, string function = "");
69 double valueLookup (const BNelectron* object, string variable, string function = "");
70 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 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 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 double valueLookup (const BNgenjet* object, string variable, string function = "");
81 double valueLookup (const BNmcparticle* object, string variable, string function = "");
82 double valueLookup (const BNprimaryvertex* object, string variable, string function = "");
83 double valueLookup (const BNbxlumi* object, string variable, string function = "");
84 double valueLookup (const BNphoton* object, string variable, string function = "");
85 double valueLookup (const BNsupercluster* object, string variable, string function = "");
86
87 int getTrkIsIso (const BNtrack* track1, const BNtrackCollection* trackColl);
88 double getTrkPtTrue (const BNtrack* track1, const BNmcparticleCollection* genPartColl);
89 double getTrkPtRes (const BNtrack* track1);
90 double getTrkIsIso (const BNtrack* track1);
91 void WriteDeadEcal ();
92 int getTrkIsMatchedDeadEcal (const BNtrack* track1);
93
94 //BNskimbits
95 //BNtrigobj
96
97 vector<string> splitString (string);
98
99
100 private:
101
102 //flagMap:
103 //string holds input collection type
104 //outer vector corresponds to each cut
105 //inner vector corresponds to each object in input collection
106 //bool tells if object passes or fails cuts
107 typedef map<string, vector < vector<bool> > > flagMap;
108
109 //counterMap:
110 //string holds input collection type
111 //vector corresponds to each cut
112 //int holds number of objects passing all cuts up to that point
113 typedef map<string ,vector <int> > counterMap;
114
115 // Remember to define parameters to be retrieved from the configuration file.
116 edm::InputTag jets_;
117 edm::InputTag muons_;
118 edm::InputTag electrons_;
119 edm::InputTag events_;
120 edm::InputTag taus_;
121 edm::InputTag mets_;
122 edm::InputTag tracks_;
123 edm::InputTag genjets_;
124 edm::InputTag mcparticles_;
125 edm::InputTag primaryvertexs_;
126 edm::InputTag bxlumis_;
127 edm::InputTag photons_;
128 edm::InputTag superclusters_;
129 edm::InputTag triggers_;
130 std::string puFile_;
131 std::string deadEcalFile_;
132 std::string muonSFFile_;
133 std::string dataPU_;
134 std::string electronSFID_;
135 std::string muonSF_;
136 std::string dataset_;
137 std::string datasetType_;
138 vector<edm::ParameterSet> channels_;
139 vector<edm::ParameterSet> histogramSets_;
140 bool plotAllObjectsInPassingEvents_;
141 bool doPileupReweighting_;
142 bool printEventInfo_;
143
144 struct DeadEcal {
145 double etaEcal;
146 double phiEcal;
147 };
148
149 std::vector<DeadEcal> DeadEcalVec;
150
151
152 //Collections
153 edm::Handle<BNtriggerCollection> triggers;
154 edm::Handle<BNjetCollection> jets;
155 edm::Handle<BNmuonCollection> muons;
156 edm::Handle<BNelectronCollection> electrons;
157 edm::Handle<BNeventCollection> events;
158 edm::Handle<BNtauCollection> taus;
159 edm::Handle<BNmetCollection> mets;
160 edm::Handle<BNtrackCollection> tracks;
161 edm::Handle<BNgenjetCollection> genjets;
162 edm::Handle<BNmcparticleCollection> mcparticles;
163 edm::Handle<BNprimaryvertexCollection> primaryvertexs;
164 edm::Handle<BNbxlumiCollection> bxlumis;
165 edm::Handle<BNphotonCollection> photons;
166 edm::Handle<BNsuperclusterCollection> superclusters;
167
168 flagMap cumulativeFlags;
169
170 vector<map<string, TH1D*> > oneDHists_;
171 vector<map<string, TH2D*> > twoDHists_;
172
173 edm::Service<TFileService> fs_;
174
175 CutFlow *masterCutFlow_;
176 vector<CutFlow *> cutFlows_;
177
178 typedef struct {
179 string name;
180 string title;
181 vector<double> bins;
182 string inputCollection;
183 vector<string> inputVariables;
184 } histogram;
185
186 struct cut {
187 string inputCollection;
188 vector<string> functions;
189 vector<string> variables;
190 vector<string> comparativeOperators;// >, <, =, etc.
191 vector<double> cutValues;
192 vector<string> logicalOperators;//and, or
193 int numSubcuts;
194 int numberRequired;
195 string eventComparativeOperator;
196 string name;
197 };
198
199 struct channel {
200 string name;
201 vector<string> triggers;
202 vector<cut> cuts;
203 };
204
205 vector<string> objectsToGet;
206 vector<string> objectsToCut;
207 vector<string> objectsToPlot;
208 vector<channel> channels;
209 vector<histogram> histograms;
210
211 PUWeight *puWeight_;
212 MuonSFWeight *muonSFWeight_;
213 ElectronSFWeight *electronSFWeight_;
214
215 template <class InputCollection> void setObjectFlags(cut &, uint, flagMap &, flagMap &, InputCollection, string);
216 template <class InputCollection1, class InputCollection2> void setObjectFlags(cut &, uint, flagMap &, flagMap &, InputCollection1, InputCollection2, vector<bool>, vector<bool>, string);
217
218 template <class InputCollection> void fill1DHistogram(TH1*, histogram, InputCollection, vector<bool>, double);
219 template <class InputCollection1, class InputCollection2> void fill1DHistogram(TH1*, histogram, InputCollection1, InputCollection2, vector<bool>, vector<bool>, vector<bool>, double);
220 template <class InputCollection> void fill2DHistogram(TH2*, histogram, InputCollection, vector<bool>, double);
221 template <class InputCollection1, class InputCollection2> void fill2DHistogram(TH2*, histogram, InputCollection1, InputCollection2, vector<bool>, vector<bool>, vector<bool>, double);
222
223 template <class InputObject> int getGenMatchedParticleIndex(InputObject);
224 int getPdgIdBinValue(int);
225 int findTauMotherIndex(const BNmcparticle*);
226
227 template <class InputObject> double getGenDeltaRLowest(InputObject);
228
229
230 const BNprimaryvertex *chosenVertex ();
231 const BNmet *chosenMET ();
232 const BNelectron *chosenElectron ();
233 const BNmuon *chosenMuon ();
234
235 };
236
237 #endif