CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes | Static Private Attributes
IsolatedTracksHcalScale Class Reference

#include <IsolatedTracksHcalScale.h>

Inheritance diagram for IsolatedTracksHcalScale:
edm::EDAnalyzer

Public Member Functions

 IsolatedTracksHcalScale (const edm::ParameterSet &)
 
 ~IsolatedTracksHcalScale ()
 
- Public Member Functions inherited from edm::EDAnalyzer
 EDAnalyzer ()
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 

Private Member Functions

void analyze (const edm::Event &, const edm::EventSetup &)
 
void beginJob ()
 
void clearTreeVectors ()
 
void endJob ()
 

Private Attributes

double a_charIsoR
 
double a_coneR
 
double a_mipR
 
double a_neutIsoR
 
const MagneticFieldbField
 
bool doMC
 
edm::Service< TFileServicefs
 
double genPartEtaBins [4]
 
bool initL1
 
std::string minQuality
 
int myverbose
 
int nEventProc
 
spr::trackSelectionParameters selectionParameters
 
int t_Bunch
 
std::vector< double > * t_conehmaxNearP
 
std::vector< double > * t_e11x11_20Sig
 
std::vector< double > * t_e15x15_20Sig
 
std::vector< double > * t_eECALDR
 
std::vector< double > * t_eHCALDR
 
std::vector< double > * t_eMipDR
 
int t_EvtNo
 
std::vector< double > * t_hCone
 
std::vector< double > * t_hsim
 
std::vector< double > * t_hsimInfoCharHad
 
std::vector< double > * t_hsimInfoMatched
 
std::vector< int > * t_hsimInfoNCharHad
 
std::vector< double > * t_hsimInfoNeutHad
 
std::vector< int > * t_hsimInfoNMatched
 
std::vector< int > * t_hsimInfoNNeutHad
 
std::vector< int > * t_hsimInfoNPhoton
 
std::vector< int > * t_hsimInfoNRest
 
std::vector< int > * t_hsimInfoNTotal
 
std::vector< double > * t_hsimInfoPdgMatched
 
std::vector< double > * t_hsimInfoPhoton
 
std::vector< double > * t_hsimInfoRest
 
std::vector< double > * t_hsimInfoTotal
 
int t_Lumi
 
std::vector< int > * t_nSimHits
 
int t_nTracks
 
int t_RunNo
 
std::vector< double > * t_trackEta
 
std::vector< double > * t_trackHcalEta
 
std::vector< double > * t_trackHcalPhi
 
std::vector< double > * t_trackP
 
std::vector< double > * t_trackPhi
 
std::vector< double > * t_trackPt
 
std::string theTrackQuality
 
double tMaxE_
 
double tMinE_
 
TTree * tree
 

Static Private Attributes

static const size_t NEtaBins = 3
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
typedef WorkerT< EDAnalyzerWorkerType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDAnalyzer
CurrentProcessingContext const * currentContext () const
 

Detailed Description

Definition at line 112 of file IsolatedTracksHcalScale.h.

Constructor & Destructor Documentation

IsolatedTracksHcalScale::IsolatedTracksHcalScale ( const edm::ParameterSet iConfig)
explicit

Definition at line 14 of file IsolatedTracksHcalScale.cc.

References a_charIsoR, a_coneR, a_mipR, a_neutIsoR, gather_cfg::cout, doMC, edm::ParameterSet::getUntrackedParameter(), initL1, spr::trackSelectionParameters::maxChi2, spr::trackSelectionParameters::maxDpOverP, spr::trackSelectionParameters::maxDxyPV, spr::trackSelectionParameters::maxDzPV, spr::trackSelectionParameters::maxInMiss, spr::trackSelectionParameters::maxOutMiss, spr::trackSelectionParameters::minLayerCrossed, spr::trackSelectionParameters::minOuterHit, spr::trackSelectionParameters::minPt, spr::trackSelectionParameters::minQuality, myverbose, reco::TrackBase::qualityByName(), selectionParameters, theTrackQuality, tMaxE_, and tMinE_.

14  {
15 
16  //now do what ever initialization is needed
17  doMC = iConfig.getUntrackedParameter<bool>("DoMC", false);
18  myverbose = iConfig.getUntrackedParameter<int>("Verbosity", 5 );
19  theTrackQuality = iConfig.getUntrackedParameter<std::string>("TrackQuality","highPurity");
21  selectionParameters.minPt = iConfig.getUntrackedParameter<double>("MinTrackPt", 10.0);
22  selectionParameters.minQuality = trackQuality_;
23  selectionParameters.maxDxyPV = iConfig.getUntrackedParameter<double>("MaxDxyPV", 0.2);
24  selectionParameters.maxDzPV = iConfig.getUntrackedParameter<double>("MaxDzPV", 5.0);
25  selectionParameters.maxChi2 = iConfig.getUntrackedParameter<double>("MaxChi2", 5.0);
26  selectionParameters.maxDpOverP = iConfig.getUntrackedParameter<double>("MaxDpOverP", 0.1);
27  selectionParameters.minOuterHit = iConfig.getUntrackedParameter<int>("MinOuterHit", 4);
28  selectionParameters.minLayerCrossed = iConfig.getUntrackedParameter<int>("MinLayerCrossed", 8);
29  selectionParameters.maxInMiss = iConfig.getUntrackedParameter<int>("MaxInMiss", 0);
30  selectionParameters.maxOutMiss = iConfig.getUntrackedParameter<int>("MaxOutMiss", 0);
31  a_coneR = iConfig.getUntrackedParameter<double>("ConeRadius",34.98);
32  a_charIsoR = a_coneR + 28.9;
33  a_neutIsoR = a_charIsoR*0.726;
34  a_mipR = iConfig.getUntrackedParameter<double>("ConeRadiusMIP",14.0);
35  tMinE_ = iConfig.getUntrackedParameter<double>("TimeMinCutECAL", -500.);
36  tMaxE_ = iConfig.getUntrackedParameter<double>("TimeMaxCutECAL", 500.);
37 
38  if (myverbose>=0) {
39  std::cout <<"Parameters read from config file \n"
40  <<" doMC " << doMC
41  <<"\t myverbose " << myverbose
42  <<"\t minPt " << selectionParameters.minPt
43  <<"\t theTrackQuality " << theTrackQuality
44  <<"\t minQuality " << selectionParameters.minQuality
45  <<"\t maxDxyPV " << selectionParameters.maxDxyPV
46  <<"\t maxDzPV " << selectionParameters.maxDzPV
47  <<"\t maxChi2 " << selectionParameters.maxChi2
48  <<"\t maxDpOverP " << selectionParameters.maxDpOverP
49  <<"\t minOuterHit " << selectionParameters.minOuterHit
50  <<"\t minLayerCrossed " << selectionParameters.minLayerCrossed
51  <<"\t maxInMiss " << selectionParameters.maxInMiss
52  <<"\t maxOutMiss " << selectionParameters.maxOutMiss
53  <<"\t a_coneR " << a_coneR
54  <<"\t a_charIsoR " << a_charIsoR
55  <<"\t a_neutIsoR " << a_neutIsoR
56  <<"\t a_mipR " << a_mipR
57  <<"\t time Range (" << tMinE_ << ":" << tMaxE_ << ")"
58  << std::endl;
59  }
60  initL1 = false;
61 
62 }
T getUntrackedParameter(std::string const &, T const &) const
TrackQuality
track quality
Definition: TrackBase.h:94
spr::trackSelectionParameters selectionParameters
static TrackQuality qualityByName(const std::string &name)
Definition: TrackBase.cc:46
reco::TrackBase::TrackQuality minQuality
tuple cout
Definition: gather_cfg.py:41
IsolatedTracksHcalScale::~IsolatedTracksHcalScale ( )

Definition at line 64 of file IsolatedTracksHcalScale.cc.

64 {}

Member Function Documentation

void IsolatedTracksHcalScale::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 66 of file IsolatedTracksHcalScale.cc.

References a_charIsoR, a_coneR, a_mipR, a_neutIsoR, bField, edm::EventBase::bunchCrossing(), spr::chargeIsolationCone(), clearTreeVectors(), gather_cfg::cout, doMC, spr::eCone_ecal(), spr::eCone_hcal(), spr::eECALmatrix(), edm::EventID::event(), edm::EventSetup::get(), edm::Event::getByLabel(), spr::goodTrack(), edm::EventBase::id(), HcalDetId::ieta(), HcalDetId::iphi(), edm::HandleBase::isValid(), edm::EventBase::luminosityBlock(), reco::TrackBase::momentum(), myverbose, nEventProc, reco::TrackBase::p(), edm::Handle< T >::product(), edm::ESHandle< class >::product(), spr::propagateCALO(), reco::TrackBase::pt(), edm::EventID::run(), selectionParameters, t_Bunch, t_conehmaxNearP, t_e11x11_20Sig, t_e15x15_20Sig, t_eECALDR, t_eHCALDR, t_eMipDR, t_EvtNo, t_hCone, t_hsim, t_hsimInfoCharHad, t_hsimInfoMatched, t_hsimInfoNCharHad, t_hsimInfoNeutHad, t_hsimInfoNMatched, t_hsimInfoNNeutHad, t_hsimInfoNPhoton, t_hsimInfoNRest, t_hsimInfoNTotal, t_hsimInfoPdgMatched, t_hsimInfoPhoton, t_hsimInfoRest, t_hsimInfoTotal, t_Lumi, t_nSimHits, t_RunNo, t_trackEta, t_trackHcalEta, t_trackHcalPhi, t_trackP, t_trackPhi, t_trackPt, theTrackQuality, tMaxE_, tMinE_, tree, ExpressReco_HICollisions_FallBack::x, ExpressReco_HICollisions_FallBack::y, and z.

66  {
67 
69  iSetup.get<IdealMagneticFieldRecord>().get(bFieldH);
70  bField = bFieldH.product();
71 
72  // get handles to calogeometry and calotopology
74  iSetup.get<CaloGeometryRecord>().get(pG);
75  const CaloGeometry* geo = pG.product();
76 
77  edm::ESHandle<CaloTopology> theCaloTopology;
78  iSetup.get<CaloTopologyRecord>().get(theCaloTopology);
79  const CaloTopology *caloTopology = theCaloTopology.product();
80 
81  /*
82  edm::ESHandle<HcalTopology> htopo;
83  iSetup.get<IdealGeometryRecord>().get(htopo);
84  const HcalTopology* theHBHETopology = htopo.product();
85  */
86 
87  // Retrieve the good/bad ECAL channels from the DB
89  iSetup.get<EcalChannelStatusRcd>().get(ecalChStatus);
90  const EcalChannelStatus* theEcalChStatus = ecalChStatus.product();
91 
92  /*
93  // Retrieve trigger tower map
94  edm::ESHandle<EcalTrigTowerConstituentsMap> hTtmap;
95  iSetup.get<IdealGeometryRecord>().get(hTtmap);
96  const EcalTrigTowerConstituentsMap& ttMap = *hTtmap;
97  */
98 
100 
101  nEventProc++;
102 
103  t_RunNo = iEvent.id().run();
104  t_EvtNo = iEvent.id().event();
105  t_Lumi = iEvent.luminosityBlock();
106  t_Bunch = iEvent.bunchCrossing();
107  if (myverbose>0) std::cout << nEventProc << " Run " << t_RunNo << " Event " << t_EvtNo << " Lumi " << t_Lumi << " Bunch " << t_Bunch << std::endl;
108 
110  iEvent.getByLabel("generalTracks", trkCollection);
111 
113  iEvent.getByLabel("offlinePrimaryVertices",recVtxs);
114 
115  // Get the beamspot
116  edm::Handle<reco::BeamSpot> beamSpotH;
117  iEvent.getByLabel("offlineBeamSpot", beamSpotH);
118 
119  math::XYZPoint leadPV(0,0,0);
120  if (recVtxs->size()>0 && !((*recVtxs)[0].isFake())) {
121  leadPV = math::XYZPoint( (*recVtxs)[0].x(),(*recVtxs)[0].y(), (*recVtxs)[0].z() );
122  } else if (beamSpotH.isValid()) {
123  leadPV = beamSpotH->position();
124  }
125 
126  if (myverbose>0) {
127  std::cout << "Primary Vertex " << leadPV;
128  if (beamSpotH.isValid()) std::cout << " Beam Spot " << beamSpotH->position();
129  std::cout << std::endl;
130  }
131 
132  std::vector<spr::propagatedTrackDirection> trkCaloDirections;
133  spr::propagateCALO(trkCollection, geo, bField, theTrackQuality, trkCaloDirections, (myverbose>2));
134  std::vector<spr::propagatedTrackDirection>::const_iterator trkDetItr;
135 
136  edm::Handle<EcalRecHitCollection> barrelRecHitsHandle;
137  edm::Handle<EcalRecHitCollection> endcapRecHitsHandle;
138  iEvent.getByLabel("ecalRecHit","EcalRecHitsEB",barrelRecHitsHandle);
139  iEvent.getByLabel("ecalRecHit","EcalRecHitsEE",endcapRecHitsHandle);
140 
142  iEvent.getByLabel("hbhereco",hbhe);
143  const HBHERecHitCollection Hithbhe = *(hbhe.product());
144 
145  //get Handles to SimTracks and SimHits
147  edm::SimTrackContainer::const_iterator simTrkItr;
149  edm::SimVertexContainer::const_iterator vtxItr = SimVtx->begin();
150 
151  //get Handles to PCaloHitContainers of eb/ee/hbhe
155 
156  //associates tracker rechits/simhits to a track
157  TrackerHitAssociator* associate=0;
158 
159  if (doMC) {
160  iEvent.getByLabel("g4SimHits",SimTk);
161  iEvent.getByLabel("g4SimHits",SimVtx);
162  iEvent.getByLabel("g4SimHits", "EcalHitsEB", pcaloeb);
163  iEvent.getByLabel("g4SimHits", "EcalHitsEE", pcaloee);
164  iEvent.getByLabel("g4SimHits", "HcalHits", pcalohh);
165  associate = new TrackerHitAssociator(iEvent);
166  }
167 
168  unsigned int nTracks=0;
169  for (trkDetItr = trkCaloDirections.begin(),nTracks=0; trkDetItr != trkCaloDirections.end(); trkDetItr++,nTracks++){
170  const reco::Track* pTrack = &(*(trkDetItr->trkItr));
171  if (spr::goodTrack(pTrack,leadPV,selectionParameters,(myverbose>2)) && trkDetItr->okECAL && trkDetItr->okHCAL) {
172  int nRH_eMipDR=0, nRH_eDR=0, nNearTRKs=0, nRecHitsCone=-99;
173  double distFromHotCell=-99.0, distFromHotCell2=-99.0;
174  int ietaHotCell=-99, iphiHotCell=-99;
175  int ietaHotCell2=-99, iphiHotCell2=-99;
176  GlobalPoint gposHotCell(0.,0.,0.), gposHotCell2(0.,0.,0.);
177  std::vector<DetId> coneRecHitDetIds, coneRecHitDetIds2;
178  std::pair<double, bool> e11x11_20SigP, e15x15_20SigP;
179  double hCone = spr::eCone_hcal(geo, hbhe, trkDetItr->pointHCAL, trkDetItr->pointECAL,
180  a_coneR, trkDetItr->directionHCAL, nRecHitsCone,
181  coneRecHitDetIds, distFromHotCell,
182  ietaHotCell, iphiHotCell, gposHotCell);
183  double eHCALDR = spr::eCone_hcal(geo, hbhe, trkDetItr->pointHCAL, trkDetItr->pointECAL,
184  a_charIsoR, trkDetItr->directionHCAL, nRecHitsCone,
185  coneRecHitDetIds2, distFromHotCell2,
186  ietaHotCell2, iphiHotCell2, gposHotCell2);
187 
188  double conehmaxNearP = spr::chargeIsolationCone(nTracks, trkCaloDirections, a_charIsoR, nNearTRKs, (myverbose>3));
189 
190  double eMipDR = spr::eCone_ecal(geo, barrelRecHitsHandle, endcapRecHitsHandle,
191  trkDetItr->pointHCAL, trkDetItr->pointECAL,
192  a_mipR, trkDetItr->directionECAL, nRH_eMipDR);
193  double eECALDR = spr::eCone_ecal(geo, barrelRecHitsHandle, endcapRecHitsHandle,
194  trkDetItr->pointHCAL, trkDetItr->pointECAL,
195  a_neutIsoR, trkDetItr->directionECAL, nRH_eDR);
196 
197  HcalDetId closestCell = (HcalDetId)(trkDetItr->detIdHCAL);
198  e11x11_20SigP = spr::eECALmatrix(trkDetItr->detIdECAL,barrelRecHitsHandle,endcapRecHitsHandle, *theEcalChStatus, geo, caloTopology,5,5, 0.060, 0.300, tMinE_,tMaxE_);
199  e15x15_20SigP = spr::eECALmatrix(trkDetItr->detIdECAL,barrelRecHitsHandle,endcapRecHitsHandle, *theEcalChStatus, geo, caloTopology,7,7, 0.060, 0.300, tMinE_,tMaxE_);
200 
201  // Fill the tree Branches here
202  t_trackP ->push_back( pTrack->p() );
203  t_trackPt ->push_back( pTrack->pt() );
204  t_trackEta ->push_back( pTrack->momentum().eta() );
205  t_trackPhi ->push_back( pTrack->momentum().phi() );
206  t_trackHcalEta ->push_back( closestCell.ieta() );
207  t_trackHcalPhi ->push_back( closestCell.iphi() );
208  t_hCone ->push_back( hCone);
209  t_conehmaxNearP ->push_back( conehmaxNearP);
210  t_eMipDR ->push_back( eMipDR);
211  t_eECALDR ->push_back( eECALDR);
212  t_eHCALDR ->push_back( eHCALDR);
213  t_e11x11_20Sig ->push_back( e11x11_20SigP.first );
214  t_e15x15_20Sig ->push_back( e15x15_20SigP.first );
215 
216  if (myverbose > 0) {
217  std::cout << "Track p " << pTrack->p() << " pt " << pTrack->pt()
218  << " eta " << pTrack->momentum().eta() << " phi "
219  << pTrack->momentum().phi() << " ieta/iphi ("
220  << closestCell.ieta() << ", " << closestCell.iphi()
221  << ") Energy in cone " << hCone << " Charge Isolation "
222  << conehmaxNearP << " eMIP " << eMipDR
223  << " Neutral isolation (ECAL) " << eECALDR-eMipDR
224  << " (ECAL NxN) " << e15x15_20SigP.first-e11x11_20SigP.first
225  << " (HCAL) " << eHCALDR-hCone << std::endl;
226  }
227 
228  if (doMC) {
229  int nSimHits = -999;
230  double hsim;
231  std::map<std::string, double> hsimInfo;
232  std::vector<int> multiplicity;
233  hsim = spr::eCone_hcal(geo, pcalohh, trkDetItr->pointHCAL,
234  trkDetItr->pointECAL, a_coneR,
235  trkDetItr->directionHCAL, nSimHits);
236  hsimInfo = spr::eHCALSimInfoCone(iEvent, pcalohh, SimTk, SimVtx,
237  pTrack, *associate, geo,
238  trkDetItr->pointHCAL,
239  trkDetItr->pointECAL, a_coneR,
240  trkDetItr->directionHCAL,
241  multiplicity);
242 
243  t_hsimInfoMatched ->push_back(hsimInfo["eMatched" ]);
244  t_hsimInfoRest ->push_back(hsimInfo["eRest" ]);
245  t_hsimInfoPhoton ->push_back(hsimInfo["eGamma" ]);
246  t_hsimInfoNeutHad ->push_back(hsimInfo["eNeutralHad"]);
247  t_hsimInfoCharHad ->push_back(hsimInfo["eChargedHad"]);
248  t_hsimInfoPdgMatched->push_back(hsimInfo["pdgMatched" ]);
249  t_hsimInfoTotal ->push_back(hsimInfo["eTotal" ]);
250 
251  t_hsimInfoNMatched ->push_back(multiplicity.at(0));
252  t_hsimInfoNTotal ->push_back(multiplicity.at(1));
253  t_hsimInfoNNeutHad ->push_back(multiplicity.at(2));
254  t_hsimInfoNCharHad ->push_back(multiplicity.at(3));
255  t_hsimInfoNPhoton ->push_back(multiplicity.at(4));
256  t_hsimInfoNRest ->push_back(multiplicity.at(5));
257 
258  t_hsim ->push_back(hsim );
259  t_nSimHits ->push_back(nSimHits );
260 
261  if (myverbose > 0) {
262  std::cout << "Matched (E) " << hsimInfo["eMatched"] << " (N) "
263  << multiplicity.at(0) << " Rest (E) " << hsimInfo["eRest"]
264  << " (N) " << multiplicity.at(1) << " Gamma (E) "
265  << hsimInfo["eGamma"] << " (N) " << multiplicity.at(2)
266  << " Neutral Had (E) " << hsimInfo["eNeutralHad"]
267  << " (N) " << multiplicity.at(3) << " Charged Had (E) "
268  << hsimInfo["eChargedHad"] << " (N) " << multiplicity.at(4)
269  << " Total (E) " << hsimInfo["eTotal"] << " (N) "
270  << multiplicity.at(5) << " PDG " << hsimInfo["pdgMatched"]
271  << " Total E " << hsim << " NHit " << nSimHits <<std::endl;
272  }
273  }
274  }
275  }
276 
277  // delete associate;
278  if (associate) delete associate;
279  tree->Fill();
280 }
RunNumber_t run() const
Definition: EventID.h:42
double p() const
momentum vector magnitude
Definition: TrackBase.h:128
std::vector< double > * t_hsimInfoMatched
EventNumber_t event() const
Definition: EventID.h:44
std::vector< double > * t_eHCALDR
std::vector< int > * t_hsimInfoNRest
std::vector< double > * t_hCone
std::vector< spr::propagatedTrackID > propagateCALO(edm::Handle< reco::TrackCollection > &trkCollection, const CaloGeometry *geo, const MagneticField *bField, std::string &theTrackQuality, bool debug=false)
const Vector & momentum() const
track momentum vector
Definition: TrackBase.h:149
std::vector< int > * t_hsimInfoNTotal
std::vector< int > * t_hsimInfoNCharHad
std::vector< int > * t_hsimInfoNMatched
std::vector< double > * t_hsim
int bunchCrossing() const
Definition: EventBase.h:62
std::vector< double > * t_hsimInfoNeutHad
edm::LuminosityBlockNumber_t luminosityBlock() const
Definition: EventBase.h:59
std::vector< int > * t_hsimInfoNPhoton
double chargeIsolationCone(unsigned int trkIndex, std::vector< spr::propagatedTrackDirection > &trkDirs, double dR, int &nNearTRKs, bool debug=false)
double eCone_ecal(const CaloGeometry *geo, edm::Handle< T > &barrelhits, edm::Handle< T > &endcaphits, const GlobalPoint &hpoint1, const GlobalPoint &point1, double dR, const GlobalVector &trackMom, int &nRecHits)
Definition: DDAxes.h:10
std::vector< double > * t_e11x11_20Sig
std::vector< int > * t_hsimInfoNNeutHad
bool goodTrack(const reco::Track *pTrack, math::XYZPoint leadPV, trackSelectionParameters parameters, bool debug=false)
double pt() const
track transverse momentum
Definition: TrackBase.h:130
std::vector< double > * t_trackEta
int ieta() const
get the cell ieta
Definition: HcalDetId.h:38
std::vector< double > * t_eECALDR
spr::trackSelectionParameters selectionParameters
bool isValid() const
Definition: HandleBase.h:76
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:359
int iphi() const
get the cell iphi
Definition: HcalDetId.h:40
std::vector< double > * t_trackPt
const MagneticField * bField
std::vector< double > * t_trackHcalEta
std::vector< double > * t_trackP
XYZPointD XYZPoint
point in space with cartesian internal representation
Definition: Point3D.h:13
const T & get() const
Definition: EventSetup.h:55
std::vector< double > * t_trackHcalPhi
T const * product() const
Definition: ESHandle.h:62
T const * product() const
Definition: Handle.h:74
std::vector< double > * t_hsimInfoPhoton
std::vector< double > * t_hsimInfoTotal
edm::EventID id() const
Definition: EventBase.h:56
std::vector< double > * t_hsimInfoCharHad
std::vector< double > * t_trackPhi
double eCone_hcal(const CaloGeometry *geo, edm::Handle< T > &hits, const GlobalPoint &hpoint1, const GlobalPoint &point1, double dR, const GlobalVector &trackMom, int &nRecHits)
tuple cout
Definition: gather_cfg.py:41
std::vector< double > * t_hsimInfoPdgMatched
std::vector< int > * t_nSimHits
std::vector< double > * t_hsimInfoRest
std::vector< double > * t_conehmaxNearP
std::vector< double > * t_e15x15_20Sig
std::vector< double > * t_eMipDR
double eECALmatrix(const DetId &detId, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, const CaloGeometry *geo, const CaloTopology *caloTopology, int ieta, int iphi, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500, bool debug=false)
void IsolatedTracksHcalScale::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 282 of file IsolatedTracksHcalScale.cc.

References doMC, fs, TFileDirectory::make(), nEventProc, t_Bunch, t_conehmaxNearP, t_e11x11_20Sig, t_e15x15_20Sig, t_eECALDR, t_eHCALDR, t_eMipDR, t_hCone, t_hsim, t_hsimInfoCharHad, t_hsimInfoMatched, t_hsimInfoNCharHad, t_hsimInfoNeutHad, t_hsimInfoNMatched, t_hsimInfoNNeutHad, t_hsimInfoNPhoton, t_hsimInfoNRest, t_hsimInfoNTotal, t_hsimInfoPdgMatched, t_hsimInfoPhoton, t_hsimInfoRest, t_hsimInfoTotal, t_Lumi, t_nSimHits, t_RunNo, t_trackEta, t_trackHcalEta, t_trackHcalPhi, t_trackP, t_trackPhi, t_trackPt, and tree.

282  {
283 
284  nEventProc=0;
285 
286 
288  tree = fs->make<TTree>("tree", "tree");
289  tree->SetAutoSave(10000);
290 
291  tree->Branch("t_RunNo" ,&t_RunNo ,"t_RunNo/I");
292  tree->Branch("t_Lumi" ,&t_Lumi ,"t_Lumi/I");
293  tree->Branch("t_Bunch" ,&t_Bunch ,"t_Bunch/I");
294 
295  t_trackP = new std::vector<double>();
296  t_trackPt = new std::vector<double>();
297  t_trackEta = new std::vector<double>();
298  t_trackPhi = new std::vector<double>();
299  t_trackHcalEta = new std::vector<double>();
300  t_trackHcalPhi = new std::vector<double>();
301  t_hCone = new std::vector<double>();
302  t_conehmaxNearP = new std::vector<double>();
303  t_eMipDR = new std::vector<double>();
304  t_eECALDR = new std::vector<double>();
305  t_eHCALDR = new std::vector<double>();
306  t_e11x11_20Sig = new std::vector<double>();
307  t_e15x15_20Sig = new std::vector<double>();
308 
309  tree->Branch("t_trackP", "vector<double>", &t_trackP );
310  tree->Branch("t_trackPt", "vector<double>", &t_trackPt );
311  tree->Branch("t_trackEta", "vector<double>", &t_trackEta );
312  tree->Branch("t_trackPhi", "vector<double>", &t_trackPhi );
313  tree->Branch("t_trackHcalEta", "vector<double>", &t_trackHcalEta );
314  tree->Branch("t_trackHcalPhi", "vector<double>", &t_trackHcalPhi );
315  tree->Branch("t_hCone", "vector<double>", &t_hCone );
316  tree->Branch("t_conehmaxNearP", "vector<double>", &t_conehmaxNearP );
317  tree->Branch("t_eMipDR", "vector<double>", &t_eMipDR );
318  tree->Branch("t_eECALDR", "vector<double>", &t_eECALDR );
319  tree->Branch("t_eHCALDR", "vector<double>", &t_eHCALDR );
320  tree->Branch("t_e11x11_20Sig", "vector<double>", &t_e11x11_20Sig );
321  tree->Branch("t_e15x15_20Sig", "vector<double>", &t_e15x15_20Sig );
322 
323  if (doMC) {
324  t_hsimInfoMatched = new std::vector<double>();
325  t_hsimInfoRest = new std::vector<double>();
326  t_hsimInfoPhoton = new std::vector<double>();
327  t_hsimInfoNeutHad = new std::vector<double>();
328  t_hsimInfoCharHad = new std::vector<double>();
329  t_hsimInfoPdgMatched = new std::vector<double>();
330  t_hsimInfoTotal = new std::vector<double>();
331  t_hsimInfoNMatched = new std::vector<int>();
332  t_hsimInfoNTotal = new std::vector<int>();
333  t_hsimInfoNNeutHad = new std::vector<int>();
334  t_hsimInfoNCharHad = new std::vector<int>();
335  t_hsimInfoNPhoton = new std::vector<int>();
336  t_hsimInfoNRest = new std::vector<int>();
337  t_hsim = new std::vector<double>();
338  t_nSimHits = new std::vector<int>();
339 
340  tree->Branch("t_hsimInfoMatched", "vector<double>", &t_hsimInfoMatched );
341  tree->Branch("t_hsimInfoRest", "vector<double>", &t_hsimInfoRest );
342  tree->Branch("t_hsimInfoPhoton", "vector<double>", &t_hsimInfoPhoton );
343  tree->Branch("t_hsimInfoNeutHad", "vector<double>", &t_hsimInfoNeutHad );
344  tree->Branch("t_hsimInfoCharHad", "vector<double>", &t_hsimInfoCharHad );
345  tree->Branch("t_hsimInfoPdgMatched", "vector<double>", &t_hsimInfoPdgMatched );
346  tree->Branch("t_hsimInfoTotal", "vector<double>", &t_hsimInfoTotal );
347  tree->Branch("t_hsimInfoNMatched", "vector<int>", &t_hsimInfoNMatched );
348  tree->Branch("t_hsimInfoNTotal", "vector<int>", &t_hsimInfoNTotal );
349  tree->Branch("t_hsimInfoNNeutHad", "vector<int>", &t_hsimInfoNNeutHad );
350  tree->Branch("t_hsimInfoNCharHad", "vector<int>", &t_hsimInfoNCharHad );
351  tree->Branch("t_hsimInfoNPhoton", "vector<int>", &t_hsimInfoNPhoton );
352  tree->Branch("t_hsimInfoNRest", "vector<int>", &t_hsimInfoNRest );
353  tree->Branch("t_hsim", "vector<double>", &t_hsim );
354  tree->Branch("t_nSimHits", "vector<int>", &t_nSimHits );
355  }
356 }
std::vector< double > * t_hsimInfoMatched
edm::Service< TFileService > fs
std::vector< double > * t_eHCALDR
std::vector< int > * t_hsimInfoNRest
std::vector< double > * t_hCone
std::vector< int > * t_hsimInfoNTotal
std::vector< int > * t_hsimInfoNCharHad
std::vector< int > * t_hsimInfoNMatched
std::vector< double > * t_hsim
std::vector< double > * t_hsimInfoNeutHad
std::vector< int > * t_hsimInfoNPhoton
std::vector< double > * t_e11x11_20Sig
std::vector< int > * t_hsimInfoNNeutHad
std::vector< double > * t_trackEta
std::vector< double > * t_eECALDR
std::vector< double > * t_trackPt
std::vector< double > * t_trackHcalEta
std::vector< double > * t_trackP
std::vector< double > * t_trackHcalPhi
std::vector< double > * t_hsimInfoPhoton
std::vector< double > * t_hsimInfoTotal
std::vector< double > * t_hsimInfoCharHad
std::vector< double > * t_trackPhi
T * make() const
make new ROOT object
std::vector< double > * t_hsimInfoPdgMatched
std::vector< int > * t_nSimHits
std::vector< double > * t_hsimInfoRest
std::vector< double > * t_conehmaxNearP
std::vector< double > * t_e15x15_20Sig
std::vector< double > * t_eMipDR
void IsolatedTracksHcalScale::clearTreeVectors ( )
private

Definition at line 363 of file IsolatedTracksHcalScale.cc.

References doMC, t_conehmaxNearP, t_e11x11_20Sig, t_e15x15_20Sig, t_eECALDR, t_eHCALDR, t_eMipDR, t_hCone, t_hsim, t_hsimInfoCharHad, t_hsimInfoMatched, t_hsimInfoNCharHad, t_hsimInfoNeutHad, t_hsimInfoNMatched, t_hsimInfoNNeutHad, t_hsimInfoNPhoton, t_hsimInfoNRest, t_hsimInfoNTotal, t_hsimInfoPdgMatched, t_hsimInfoPhoton, t_hsimInfoRest, t_hsimInfoTotal, t_nSimHits, t_trackEta, t_trackHcalEta, t_trackHcalPhi, t_trackP, t_trackPhi, and t_trackPt.

Referenced by analyze().

363  {
364 
365  t_trackP ->clear();
366  t_trackPt ->clear();
367  t_trackEta ->clear();
368  t_trackPhi ->clear();
369  t_trackHcalEta ->clear();
370  t_trackHcalPhi ->clear();
371  t_hCone ->clear();
372  t_conehmaxNearP ->clear();
373  t_eMipDR ->clear();
374  t_eECALDR ->clear();
375  t_eHCALDR ->clear();
376  t_e11x11_20Sig ->clear();
377  t_e15x15_20Sig ->clear();
378 
379  if (doMC) {
380  t_hsimInfoMatched ->clear();
381  t_hsimInfoRest ->clear();
382  t_hsimInfoPhoton ->clear();
383  t_hsimInfoNeutHad ->clear();
384  t_hsimInfoCharHad ->clear();
385  t_hsimInfoPdgMatched ->clear();
386  t_hsimInfoTotal ->clear();
387  t_hsimInfoNMatched ->clear();
388  t_hsimInfoNTotal ->clear();
389  t_hsimInfoNNeutHad ->clear();
390  t_hsimInfoNCharHad ->clear();
391  t_hsimInfoNPhoton ->clear();
392  t_hsimInfoNRest ->clear();
393  t_hsim ->clear();
394  t_nSimHits ->clear();
395  }
396 }
std::vector< double > * t_hsimInfoMatched
std::vector< double > * t_eHCALDR
std::vector< int > * t_hsimInfoNRest
std::vector< double > * t_hCone
std::vector< int > * t_hsimInfoNTotal
std::vector< int > * t_hsimInfoNCharHad
std::vector< int > * t_hsimInfoNMatched
std::vector< double > * t_hsim
std::vector< double > * t_hsimInfoNeutHad
std::vector< int > * t_hsimInfoNPhoton
std::vector< double > * t_e11x11_20Sig
std::vector< int > * t_hsimInfoNNeutHad
std::vector< double > * t_trackEta
std::vector< double > * t_eECALDR
std::vector< double > * t_trackPt
std::vector< double > * t_trackHcalEta
std::vector< double > * t_trackP
std::vector< double > * t_trackHcalPhi
std::vector< double > * t_hsimInfoPhoton
std::vector< double > * t_hsimInfoTotal
std::vector< double > * t_hsimInfoCharHad
std::vector< double > * t_trackPhi
std::vector< double > * t_hsimInfoPdgMatched
std::vector< int > * t_nSimHits
std::vector< double > * t_hsimInfoRest
std::vector< double > * t_conehmaxNearP
std::vector< double > * t_e15x15_20Sig
std::vector< double > * t_eMipDR
void IsolatedTracksHcalScale::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 358 of file IsolatedTracksHcalScale.cc.

References gather_cfg::cout, and nEventProc.

358  {
359 
360  std::cout << "Number of Events Processed " << nEventProc << std::endl;
361 }
tuple cout
Definition: gather_cfg.py:41

Member Data Documentation

double IsolatedTracksHcalScale::a_charIsoR
private

Definition at line 132 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

double IsolatedTracksHcalScale::a_coneR
private

Definition at line 132 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

double IsolatedTracksHcalScale::a_mipR
private

Definition at line 132 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

double IsolatedTracksHcalScale::a_neutIsoR
private

Definition at line 132 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

const MagneticField* IsolatedTracksHcalScale::bField
private

Definition at line 155 of file IsolatedTracksHcalScale.h.

Referenced by analyze().

bool IsolatedTracksHcalScale::doMC
private
edm::Service<TFileService> IsolatedTracksHcalScale::fs
private

Definition at line 174 of file IsolatedTracksHcalScale.h.

Referenced by beginJob().

double IsolatedTracksHcalScale::genPartEtaBins[4]
private

Definition at line 157 of file IsolatedTracksHcalScale.h.

bool IsolatedTracksHcalScale::initL1
private

Definition at line 128 of file IsolatedTracksHcalScale.h.

Referenced by IsolatedTracksHcalScale().

std::string IsolatedTracksHcalScale::minQuality
private

Definition at line 130 of file IsolatedTracksHcalScale.h.

int IsolatedTracksHcalScale::myverbose
private

Definition at line 129 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

const size_t IsolatedTracksHcalScale::NEtaBins = 3
staticprivate

Definition at line 159 of file IsolatedTracksHcalScale.h.

int IsolatedTracksHcalScale::nEventProc
private

Definition at line 149 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and endJob().

spr::trackSelectionParameters IsolatedTracksHcalScale::selectionParameters
private

Definition at line 131 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

int IsolatedTracksHcalScale::t_Bunch
private

Definition at line 163 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and beginJob().

std::vector<double> * IsolatedTracksHcalScale::t_conehmaxNearP
private

Definition at line 166 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_e11x11_20Sig
private

Definition at line 167 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_e15x15_20Sig
private

Definition at line 167 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_eECALDR
private

Definition at line 166 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_eHCALDR
private

Definition at line 165 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_eMipDR
private

Definition at line 166 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

int IsolatedTracksHcalScale::t_EvtNo
private

Definition at line 163 of file IsolatedTracksHcalScale.h.

Referenced by analyze().

std::vector<double>* IsolatedTracksHcalScale::t_hCone
private

Definition at line 166 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_hsim
private

Definition at line 170 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_hsimInfoCharHad
private

Definition at line 169 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_hsimInfoMatched
private

Definition at line 168 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int>* IsolatedTracksHcalScale::t_hsimInfoNCharHad
private

Definition at line 172 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_hsimInfoNeutHad
private

Definition at line 169 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int>* IsolatedTracksHcalScale::t_hsimInfoNMatched
private

Definition at line 171 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int> * IsolatedTracksHcalScale::t_hsimInfoNNeutHad
private

Definition at line 171 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int> * IsolatedTracksHcalScale::t_hsimInfoNPhoton
private

Definition at line 172 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int> * IsolatedTracksHcalScale::t_hsimInfoNRest
private

Definition at line 172 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<int> * IsolatedTracksHcalScale::t_hsimInfoNTotal
private

Definition at line 171 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_hsimInfoPdgMatched
private

Definition at line 169 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_hsimInfoPhoton
private

Definition at line 168 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_hsimInfoRest
private

Definition at line 168 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_hsimInfoTotal
private

Definition at line 170 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

int IsolatedTracksHcalScale::t_Lumi
private

Definition at line 163 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and beginJob().

std::vector<int>* IsolatedTracksHcalScale::t_nSimHits
private

Definition at line 173 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

int IsolatedTracksHcalScale::t_nTracks
private

Definition at line 163 of file IsolatedTracksHcalScale.h.

int IsolatedTracksHcalScale::t_RunNo
private

Definition at line 163 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and beginJob().

std::vector<double> * IsolatedTracksHcalScale::t_trackEta
private

Definition at line 164 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_trackHcalEta
private

Definition at line 165 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_trackHcalPhi
private

Definition at line 165 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double>* IsolatedTracksHcalScale::t_trackP
private

Definition at line 164 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_trackPhi
private

Definition at line 164 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::vector<double> * IsolatedTracksHcalScale::t_trackPt
private

Definition at line 164 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), beginJob(), and clearTreeVectors().

std::string IsolatedTracksHcalScale::theTrackQuality
private

Definition at line 130 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

double IsolatedTracksHcalScale::tMaxE_
private

Definition at line 133 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

double IsolatedTracksHcalScale::tMinE_
private

Definition at line 133 of file IsolatedTracksHcalScale.h.

Referenced by analyze(), and IsolatedTracksHcalScale().

TTree* IsolatedTracksHcalScale::tree
private