ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/LJMet/MultivariateAnalysis/interface/TtLJetsAnalyzer.h
(Generate patch)

Comparing UserCode/LJMet/MultivariateAnalysis/interface/TtLJetsAnalyzer.h (file contents):
Revision 1.4 by kukartse, Wed Dec 10 16:44:48 2008 UTC vs.
Revision 1.13 by kukartse, Thu May 14 00:12:39 2009 UTC

# Line 17 | Line 17
17   //
18   //
19  
20 + #include "LJMet/MultivariateAnalysis/interface/RooGKCounter.h"
21 +
22   #include <memory>
23   #include <string>
24 <
24 > //#include "TFile.h"
25 > #include "TTree.h"
26 > #include "Rtypes.h"
27   #include "FWCore/Framework/interface/Frameworkfwd.h"
28   #include "FWCore/Framework/interface/EDAnalyzer.h"
29   #include "FWCore/Framework/interface/Event.h"
30   #include "FWCore/Framework/interface/MakerMacros.h"
31   #include "FWCore/ParameterSet/interface/ParameterSet.h"
28 #include "LJMet/MultivariateAnalysis/interface/RooGKCounter.h"
32  
33 < #include "TFile.h"
34 < #include "TTree.h"
35 < #include "Rtypes.h"
33 > #include "FWCore/ServiceRegistry/interface/Service.h"
34 > #include "PhysicsTools/UtilAlgos/interface/TFileService.h"
35 > #include "DataFormats/Math/interface/LorentzVector.h"
36 > #include "DataFormats/Common/interface/View.h"
37 > #include "DataFormats/PatCandidates/interface/Electron.h"
38 > #include "DataFormats/TrackReco/interface/Track.h"
39  
40   class TtLJetsAnalyzer : public edm::EDAnalyzer {
41   public:
# Line 43 | Line 49 | private:
49    virtual void analyze(const edm::Event&, const edm::EventSetup&);
50    virtual void endJob(void);
51  
52 <  // quantities read from the config file
53 <  std::string _jetSource, _electronSource, _muonSource, _METSource;
52 >  // returns pair<dist,dcot>
53 >  pair<float, float> getConversionInfo(const pat::Electron & el,
54 >                                       const reco::Track & track,
55 >                                       const reco::BeamSpot::Point _bs,
56 >                                       float bField);
57 >
58 >  bool ConversionAlgo(const pat::Electron& e, edm::Handle<edm::View<reco::Track> > track_h);
59 >  double DelRTrackEle(const pat::Electron& e,const reco::Track& tk);
60 >
61 >  edm::Service<TFileService> fs;
62 >
63 >  bool first_event;
64 >
65 >  // _____ quantities read from the config file _________________________
66 >  std::string _jetSource, _electronSource, _muonSource, _METSource,
67 >    _beamSpotSource, _trigger_source, _track_source;
68 >  bool _lepton_flavor_is_muon;
69    std::string _outFile;
70 +  bool _is_mc;
71    int nCaloJets_min;
72    int nLepton_min;
73    double jet_pt_min            ;
# Line 59 | Line 81 | private:
81    double electron_trackIso_max ;
82    double electron_caloIso_max  ;
83    double met_et_min            ;
84 +  double min_dr_jet_lepton     ;
85 +  double _bfield;
86 +  double _dist_min;
87 +  double _dist_max;
88 +  double _abs_dcot_max;
89 +  double _e_track_dr;
90  
91    RooGKCounter eventCounter;
92    RooGKCounter selectedEvents;
93  
66  TFile * _file;
94    TTree * _tree;
95  
96 <  // output tree variables
96 >  //
97 >  // _____ output tree variables ________________________________________
98 >  //
99    Int_t _event;
100    Int_t _process_id;
101    Int_t _n_jets;
102 +  Int_t _n_removed_jets;
103    Int_t _n_met;
104    Int_t _n_muons;
105    Int_t _n_electrons;
106    Int_t _lepton_is_muon;
107 +  //
108 +  //_____ photon conversion _____________________________________________
109 +  //
110 +  vector<double> * _e_dist;
111 +  vector<double> * _e_dcot;
112 +  bool     _is_conv;
113 +  //
114 +  //_____ trigger _______________________________________________________
115 +  //
116 +  std::map<std::string,bool> _hlt;
117 +  //vector<TBranch> b_hlt;
118 +  //
119    Double_t _event_weight;
120 +  Double_t _lepton_et;
121    Double_t _lepton_pt;
122    Double_t _lepton_eta;
123    Double_t _lepton_phi;
124 +  Double_t _lepton_jet_min_dr;
125 +  Double_t _lepton_ptrel; // relative to the nearest jet
126 +  Double_t _lepton_d0;    // relative to the beam spot
127 +  Double_t _lepton_d0_err;    // relative to the beam spot
128 +  Double_t _lepton_d0_significance;    // relative to the beam spot
129    Double_t _lepton_energy;
130 +  Double_t _lepton_track_iso;
131 +  Double_t _lepton_calo_iso;
132 +  Double_t _lepton_ecal_iso;
133 +  Double_t _lepton_hcal_iso;
134 +  Double_t _lepton_user_iso;
135 +  Double_t _lepton_IsoDeposit_em;
136 +  Double_t _lepton_IsoDeposit_had;
137 +  Int_t    _muon_track_nhits;
138    Double_t _muon_track_chi2;
139    Double_t _muon_track_ndof;
140    Double_t _muon_track_nChi2;
# Line 88 | Line 144 | private:
144    Double_t _muon_globalTrack_chi2;
145    Double_t _muon_globalTrack_ndof;
146    Double_t _muon_globalTrack_nChi2;
91  Double_t _lepton_track_iso;
92  Double_t _lepton_calo_iso;
93  Double_t _lepton_ecal_iso;
94  Double_t _lepton_hcal_iso;
95  Double_t _lepton_user_iso;
96  Double_t _met_pt;
147    Double_t _met_et;
148 +  Double_t _met_pt;
149    Double_t _met_eta;
150    Double_t _met_phi;
151    Double_t _met_energy;
152 +  Double_t _jet1_et;
153    Double_t _jet1_pt;
154    Double_t _jet1_eta;
155    Double_t _jet1_phi;
156    Double_t _jet1_energy;
157 +  Double_t _jet2_et;
158    Double_t _jet2_pt;
159    Double_t _jet2_eta;
160    Double_t _jet2_phi;
161    Double_t _jet2_energy;
162 +  Double_t _jet3_et;
163    Double_t _jet3_pt;
164    Double_t _jet3_eta;
165    Double_t _jet3_phi;
166    Double_t _jet3_energy;
167 +  Double_t _jet4_et;
168    Double_t _jet4_pt;
169    Double_t _jet4_eta;
170    Double_t _jet4_phi;
# Line 176 | Line 231 | private:
231    // mT              
232    Double_t _getDphiMuMet     ;
233    Double_t _getMt            ;
234 +  //
235 +  //
236 +  //_____ b tagging ______________________________________________
237 +  vector<double> * _jet_pt;
238 +  vector<double> * _jet_pz;
239 +  vector<double> * _jet_eta;
240 +  vector<double> * _jet_phi;
241 +  vector<double> * _jet_et;
242 +  vector<double> * _jet_energy;
243 +  vector<int> *    _jet_flavor;
244 +  //
245 +  vector<double> * _muon_pt;
246 +  vector<double> * _muon_pz;
247 +  vector<double> * _muon_eta;
248 +  vector<double> * _muon_phi;
249 +  vector<double> * _muon_et;
250 +  vector<double> * _muon_energy;
251 +  vector<int> *    _muon_flavor;
252 +  //
253 +  vector<double> * _electron_pt;
254 +  vector<double> * _electron_pz;
255 +  vector<double> * _electron_eta;
256 +  vector<double> * _electron_phi;
257 +  vector<double> * _electron_et;
258 +  vector<double> * _electron_energy;
259 +  vector<int> *    _electron_flavor;
260 +  /* FIXME: add vectors of these:
261 +  Double_t _lepton_track_iso;
262 +  Double_t _lepton_calo_iso;
263 +  Double_t _lepton_ecal_iso;
264 +  Double_t _lepton_hcal_iso;
265 +  Double_t _lepton_user_iso;
266 +  Double_t _lepton_IsoDeposit_em;
267 +  Double_t _lepton_IsoDeposit_had;
268 +  */
269 +  TBranch * b_jet_pt;
270 +  TBranch * b_jet_pz;
271 +  TBranch * b_jet_eta;
272 +  TBranch * b_jet_phi;
273 +  TBranch * b_jet_et;
274 +  TBranch * b_jet_energy;
275 +  TBranch * b_jet_flavor;
276 +  //
277 +  TBranch * b_lepton_pt;
278 +  TBranch * b_lepton_pz;
279 +  TBranch * b_lepton_eta;
280 +  TBranch * b_lepton_phi;
281 +  TBranch * b_lepton_et;
282 +  TBranch * b_lepton_energy;
283 +  TBranch * b_lepton_flavor;
284 +  TBranch * b_lepton_jet_min_dr;
285 +  TBranch * b_lepton_ptrel;
286 +  TBranch * b_lepton_d0;
287 +  TBranch * b_lepton_d0_err;
288 +  TBranch * b_lepton_d0_significance;
289 +  //
290 +  vector<string> * _b_tagger_label;
291 +  vector<float> * _b_tagger_discr;
292 +  TBranch * b_b_tagger_label;
293 +  TBranch * b_b_tagger_discr;
294    Int_t _n_tagged_jets_trackCounting_loose;
295    Int_t _n_tagged_jets_trackCounting_medium;
296    Int_t _n_tagged_jets_trackCounting_tight;
# Line 186 | Line 301 | private:
301    //
302    //
303    //_____ electron quality _______________________________________
304 <  Double_t _electron_id_robust;
305 <  Double_t _electron_id_loose;
306 <  Double_t _electron_id_tight;
307 <  Double_t _electron_tdrid_medium;
308 <  Double_t _electron_tdrid_loose;
194 <  Double_t _electron_tdrid_tight;
304 >  Float_t _eidLoose;
305 >  Float_t _eidRobustHighEnergy;
306 >  Float_t _eidRobustLoose;
307 >  Float_t _eidRobustTight;
308 >  Float_t _eidTight;
309    Int_t    _GsfElectron_classification;
310    Double_t _GsfElectron_hadronicOverEm;
311    Double_t _GsfElectron_caloEnergyError;
312    Double_t _GsfElectron_trackMomentumError;
199  Double_t _GsfElectron_shFracInnerHits; //! measure the fraction of common hits between the GSF and CTF tracks
313    Int_t    _GsfElectron_numberOfClusters;
314    Double_t _GsfElectron_caloEnergy;  // the super cluster energy corrected by EnergyScaleFactor
315    Double_t _GsfElectron_eSuperClusterOverP;  // the supercluster energy / track momentum at impact point
# Line 206 | Line 319 | private:
319    Double_t _GsfElectron_deltaPhiSuperClusterTrackAtVtx;  // the supercluster phi - track phi from helix extrapolation from impact point
320    Double_t _GsfElectron_deltaPhiSeedClusterTrackAtCalo;  // the seed cluster phi - track phi at calo from outermost state
321    // ____ branches
322 <  TBranch * b_electron_id_robust;
323 <  TBranch * b_electron_id_loose;
324 <  TBranch * b_electron_id_tight;
325 <  TBranch * b_electron_tdrid_medium;
326 <  TBranch * b_electron_tdrid_loose;
214 <  TBranch * b_electron_tdrid_tight;
322 >  TBranch * b_eidLoose;
323 >  TBranch * b_eidRobustHighEnergy;
324 >  TBranch * b_eidRobustLoose;
325 >  TBranch * b_eidRobustTight;
326 >  TBranch * b_eidTight;
327    TBranch * b_GsfElectron_classification;
328    TBranch * b_GsfElectron_hadronicOverEm;
329    TBranch * b_GsfElectron_caloEnergyError;
330    TBranch * b_GsfElectron_trackMomentumError;
219  TBranch * b_GsfElectron_shFracInnerHits; //! measure the fraction of common hits between the GSF and CTF tracks
331    TBranch * b_GsfElectron_numberOfClusters;
332    TBranch * b_GsfElectron_caloEnergy;  // the super cluster energy corrected by EnergyScaleFactor
333    TBranch * b_GsfElectron_eSuperClusterOverP;  // the supercluster energy / track momentum at impact point
# Line 263 | Line 374 | private:
374    TBranch * b_event;
375    TBranch * b_process_id;
376    TBranch * b_n_jets;
377 +  TBranch * b_n_removed_jets;
378    TBranch * b_n_met;
379    TBranch * b_n_muons;
380    TBranch * b_n_electrons;
381    TBranch * b_lepton_is_muon;
382    TBranch * b_event_weight;
383 <  TBranch * b_lepton_pt;
384 <  TBranch * b_lepton_eta;
385 <  TBranch * b_lepton_phi;
386 <  TBranch * b_lepton_energy;
383 >  //
384 >  TBranch * b_muon_et;
385 >  TBranch * b_muon_pt;
386 >  TBranch * b_muon_pz;
387 >  TBranch * b_muon_eta;
388 >  TBranch * b_muon_phi;
389 >  TBranch * b_muon_energy;
390 >  TBranch * b_muon_flavor;
391 >  //
392 >  TBranch * b_electron_et;
393 >  TBranch * b_electron_pt;
394 >  TBranch * b_electron_pz;
395 >  TBranch * b_electron_eta;
396 >  TBranch * b_electron_phi;
397 >  TBranch * b_electron_energy;
398 >  TBranch * b_electron_flavor;
399 >  //
400    TBranch * b_muon_track_chi2;
401    TBranch * b_muon_track_ndof;
402    TBranch * b_muon_track_nChi2;
# Line 286 | Line 411 | private:
411    TBranch * b_lepton_ecal_iso;
412    TBranch * b_lepton_hcal_iso;
413    TBranch * b_lepton_user_iso;
414 <  TBranch * b_met_pt;
414 >  TBranch * b_lepton_IsoDeposit_em;
415 >  TBranch * b_lepton_IsoDeposit_had;
416    TBranch * b_met_et;
417 +  TBranch * b_met_pt;
418    TBranch * b_met_eta;
419    TBranch * b_met_phi;
420    TBranch * b_met_energy;
421 +  TBranch * b_jet1_et;
422    TBranch * b_jet1_pt;
423    TBranch * b_jet1_eta;
424    TBranch * b_jet1_phi;
425    TBranch * b_jet1_energy;
426 +  TBranch * b_jet2_et;
427    TBranch * b_jet2_pt;
428    TBranch * b_jet2_eta;
429    TBranch * b_jet2_phi;
430    TBranch * b_jet2_energy;
431 +  TBranch * b_jet3_et;
432    TBranch * b_jet3_pt;
433    TBranch * b_jet3_eta;
434    TBranch * b_jet3_phi;
435    TBranch * b_jet3_energy;
436 +  TBranch * b_jet4_et;
437    TBranch * b_jet4_pt;
438    TBranch * b_jet4_eta;
439    TBranch * b_jet4_phi;

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines