82 std::cout <<
"Parameters read from config file \n"
83 <<
"myverbose_ " << myverbose_ <<
"\n"
84 <<
"useJetTrigger_ " << useJetTrigger_ <<
"\n"
85 <<
"drLeadJetVeto_ " << drLeadJetVeto_ <<
"\n"
86 <<
"minTrackP_ " << minTrackP_ <<
"\n"
100 unsigned int irun = (
unsigned int)iEvent.
id().
run();
102 unsigned int ievt = (
unsigned int)iEvent.
id().
event();
116 l1extra::L1JetParticleCollection::const_iterator itr;
117 for(itr = l1TauHandle->begin(); itr != l1TauHandle->end(); ++itr )
127 for( itr = l1CenJetHandle->begin(); itr != l1CenJetHandle->end(); ++itr )
137 for( itr = l1FwdJetHandle->begin(); itr != l1FwdJetHandle->end(); ++itr )
191 iEvent.
getByLabel(
"ecalRecHit",
"EcalRecHitsEB",barrelRecHitsHandle);
192 iEvent.
getByLabel(
"ecalRecHit",
"EcalRecHitsEE",endcapRecHitsHandle);
204 iEvent.
getByLabel(
"generalTracks", trkCollection);
205 reco::TrackCollection::const_iterator trkItr;
207 std::cout <<
"Track Collection: " << std::endl;
208 std::cout <<
"Number of Tracks " << trkCollection->size() << std::endl;
210 std::string theTrackQuality =
"highPurity";
217 edm::SimTrackContainer::const_iterator simTrkItr;
238 edm::InputTag theTriggerResultsLabel (
"TriggerResults",
"",
"HLT");
240 iEvent.
getByLabel( theTriggerResultsLabel, triggerResults);
244 std::vector<int> v_hlTriggers;
247 int hltL1Jet15 (-99);
254 int hltL1SingleEG5 (-99);
255 int hltZeroBias (-99);
256 int hltMinBiasHcal (-99);
257 int hltMinBiasEcal (-99);
258 int hltMinBiasPixel (-99);
259 int hltSingleIsoTau30_Trk5 (-99);
260 int hltDoubleLooseIsoTau15_Trk5(-99);
262 if (triggerResults.
isValid()) {
268 for (
unsigned int i=0;
i<triggerResults->size();
i++){
270 if (triggerNames.
triggerName(
i) ==
"HLT_IsoTrackHE_1E31") hltHE = triggerResults->accept(
i);
271 if (triggerNames.
triggerName(
i) ==
"HLT_IsoTrackHB_1E31") hltHB = triggerResults->accept(
i);
272 if (triggerNames.
triggerName(
i) ==
"HLT_L1Jet15" ) hltL1Jet15 = triggerResults->accept(
i);
273 if (triggerNames.
triggerName(
i) ==
"HLT_Jet30" ) hltJet30 = triggerResults->accept(
i);
274 if (triggerNames.
triggerName(
i) ==
"HLT_Jet50" ) hltJet50 = triggerResults->accept(
i);
275 if (triggerNames.
triggerName(
i) ==
"HLT_Jet80" ) hltJet80 = triggerResults->accept(
i);
276 if (triggerNames.
triggerName(
i) ==
"HLT_Jet110" ) hltJet110 = triggerResults->accept(
i);
277 if (triggerNames.
triggerName(
i) ==
"HLT_Jet140" ) hltJet140 = triggerResults->accept(
i);
278 if (triggerNames.
triggerName(
i) ==
"HLT_Jet180" ) hltJet180 = triggerResults->accept(
i);
279 if (triggerNames.
triggerName(
i) ==
"HLT_L1SingleEG5" ) hltL1SingleEG5 = triggerResults->accept(
i);
280 if (triggerNames.
triggerName(
i) ==
"HLT_ZeroBias" ) hltZeroBias = triggerResults->accept(
i);
281 if (triggerNames.
triggerName(
i) ==
"HLT_MinBiasHcal" ) hltMinBiasHcal = triggerResults->accept(
i);
282 if (triggerNames.
triggerName(
i) ==
"HLT_MinBiasEcal" ) hltMinBiasEcal = triggerResults->accept(
i);
283 if (triggerNames.
triggerName(
i) ==
"HLT_MinBiasPixel" ) hltMinBiasPixel = triggerResults->accept(
i);
284 if (triggerNames.
triggerName(
i) ==
"HLT_SingleIsoTau30_Trk5" ) hltSingleIsoTau30_Trk5 = triggerResults->accept(
i);
285 if (triggerNames.
triggerName(
i) ==
"HLT_DoubleLooseIsoTau15_Trk5" ) hltDoubleLooseIsoTau15_Trk5 = triggerResults->accept(
i);
307 for( trkItr = trkCollection->begin();
308 trkItr != trkCollection->end(); ++trkItr)
319 bool trkQual = pTrack->
quality(trackQuality_);
323 double eta1 = pTrack->
momentum().eta();
324 double phi1 = pTrack->
momentum().phi();
325 double pt1 = pTrack->
pt();
326 double p1 = pTrack->
p();
344 if( !goodEta || !goodPt || !trkQual )
continue;
384 int nOuterHits = hitp.stripTOBLayersWithMeasurement()
385 +hitp.stripTECLayersWithMeasurement() ;
390 edm::SimTrackContainer::const_iterator matchedSimTrk =
392 simP = matchedSimTrk->momentum().P();
409 std::cout <<
"Track doesn't reach Ecal." << std::endl;
423 double drFromLeadJet = 999.0;
427 drFromLeadJet =
sqrt(dphi*dphi + deta*deta);
436 const int a_size = 7;
437 double a_coneR[a_size];
438 double a_charIsoR[a_size];
439 double a_neutIsoR[a_size];
449 for (
int i=0;
i<a_size;
i++){
450 a_charIsoR[
i] = a_coneR[
i]+28.9;
451 a_neutIsoR[
i] = a_charIsoR[
i]*0.726;
460 double trkEcalEne =-999.0;
466 e3x3 =
spr::eECALmatrix(isoCell,barrelRecHitsHandle,endcapRecHitsHandle, *theEcalChStatus, geo, caloTopology, sevlv.
product(),1,1).
first;
467 trkEcalEne =
spr::eCaloSimInfo(iEvent, geo, pcaloeb, pcaloee, SimTk, SimVtx, pTrack, *associate);
470 e3x3 =
spr::eECALmatrix(isoCell,barrelRecHitsHandle,endcapRecHitsHandle, *theEcalChStatus, geo, caloTopology, sevlv.
product(),1,1).
first;
471 trkEcalEne =
spr::eCaloSimInfo(iEvent, geo, pcaloeb, pcaloee, SimTk, SimVtx, pTrack, *associate);
477 const int a_mip_size = 5;
478 double a_mipR[a_mip_size];
485 std::vector<double> v_eDR;
486 for (
int i = 0 ;
i < a_size ;
i++){
495 trackMomAtEcal, nRH_eDR);
496 v_eDR.push_back(eDR);
500 std::vector<double> v_eMipDR;
501 for (
int i = 0 ;
i < a_mip_size ;
i++){
506 a_mipR[
i], trackMomAtEcal, nRH_eMipDR);
508 v_eMipDR.push_back(eMipDR);
517 std::vector<double> v_hmaxNearP_goodTrk;
518 std::vector<double> v_hmaxNearP ;
519 std::vector<int> v_hnNearTRKs ;
520 std::vector<int> v_hnLayers_maxNearP;
521 std::vector<int> v_htrkQual_maxNearP;
523 std::vector<double> v_cone_hmaxNearP_goodTrk;
524 std::vector<double> v_cone_hmaxNearP ;
525 std::vector<int> v_cone_hnNearTRKs ;
526 std::vector<int> v_cone_hnLayers_maxNearP;
527 std::vector<int> v_cone_htrkQual_maxNearP;
529 for (
int i = 0 ;
i < a_size ;
i++){
531 double hmaxNearP = -999.0;
533 int hnLayers_maxNearP = 0;
534 int htrkQual_maxNearP = -1;
535 double hmaxNearP_goodTrk = -999.0;
537 double conehmaxNearP = -999.0;
538 int conehnNearTRKs = 0;
539 int conehnLayers_maxNearP = 0;
540 int conehtrkQual_maxNearP = -1;
541 double conehmaxNearP_goodTrk = -999.0;
544 trkItr, trkCollection,
546 theTrackQuality, conehnNearTRKs,
547 conehnLayers_maxNearP,
548 conehtrkQual_maxNearP,
549 conehmaxNearP_goodTrk,
550 hpoint1, trackMomAtHcal,
553 v_hmaxNearP_goodTrk.push_back(hmaxNearP_goodTrk);
554 v_hmaxNearP .push_back(hmaxNearP );
555 v_hnNearTRKs .push_back(hnNearTRKs );
556 v_hnLayers_maxNearP.push_back(hnLayers_maxNearP);
557 v_htrkQual_maxNearP.push_back(htrkQual_maxNearP);
559 v_cone_hmaxNearP_goodTrk.push_back(conehmaxNearP_goodTrk);
560 v_cone_hmaxNearP .push_back(conehmaxNearP );
561 v_cone_hnNearTRKs .push_back(conehnNearTRKs );
562 v_cone_hnLayers_maxNearP.push_back(conehnLayers_maxNearP);
563 v_cone_htrkQual_maxNearP.push_back(conehtrkQual_maxNearP);
567 double h3x3=-999.0, h5x5=-999.0;
568 double hsim3x3=-999.0, hsim5x5=-999.0, trkHcalEne=-999.0;
569 std::map<std::string, double> hsimInfo3x3, hsimInfo5x5;
570 double distFromHotCell_h3x3 = -99.;
571 int ietaFromHotCell_h3x3 = -99;
572 int iphiFromHotCell_h3x3 = -99;
573 double distFromHotCell_h5x5 = -99.;
574 int ietaFromHotCell_h5x5 = -99;
575 int iphiFromHotCell_h5x5 = -99;
580 int nRH_h3x3(0), nRH_h5x5(0);
595 std::vector<int> v_RH_h3x3_ieta;
596 std::vector<int> v_RH_h3x3_iphi;
597 std::vector<double> v_RH_h3x3_ene;
598 std::vector<int> v_RH_h5x5_ieta;
599 std::vector<int> v_RH_h5x5_iphi;
600 std::vector<double> v_RH_h5x5_ene;
604 nRH_h3x3, v_RH_h3x3_ieta, v_RH_h3x3_iphi, v_RH_h3x3_ene,
609 nRH_h5x5, v_RH_h5x5_ieta, v_RH_h5x5_iphi, v_RH_h5x5_ene,
616 std::vector<int> multiplicity3x3;
617 std::vector<int> multiplicity5x5;
624 hsimInfo3x3 =
spr::eHCALSimInfo(iEvent, theHBHETopology, ClosestCell, pcalohh, SimTk, SimVtx, pTrack, *associate, 1,1, multiplicity3x3);
625 hsimInfo5x5 =
spr::eHCALSimInfo(iEvent, theHBHETopology, ClosestCell, pcalohh, SimTk, SimVtx, pTrack, *associate, 2,2, multiplicity5x5);
628 trkHcalEne =
spr::eCaloSimInfo(iEvent, geo, pcalohh, SimTk, SimVtx, pTrack, *associate);
632 std::vector<double> v_hsimInfoConeMatched;
633 std::vector<double> v_hsimInfoConeRest ;
634 std::vector<double> v_hsimInfoConePhoton ;
635 std::vector<double> v_hsimInfoConeNeutHad;
636 std::vector<double> v_hsimInfoConeCharHad;
637 std::vector<double> v_hsimInfoConePdgMatched;
638 std::vector<double> v_hsimInfoConeTotal ;
640 std::vector<int> v_hsimInfoConeNMatched;
641 std::vector<int> v_hsimInfoConeNTotal ;
642 std::vector<int> v_hsimInfoConeNNeutHad;
643 std::vector<int> v_hsimInfoConeNCharHad;
644 std::vector<int> v_hsimInfoConeNPhoton ;
645 std::vector<int> v_hsimInfoConeNRest ;
647 std::vector<double> v_hsimCone ;
648 std::vector<double> v_hCone ;
650 std::vector<int> v_nRecHitsCone ;
651 std::vector<int> v_nSimHitsCone ;
653 std::vector<double> v_distFromHotCell;
654 std::vector<int> v_ietaFromHotCell;
655 std::vector<int> v_iphiFromHotCell;
659 std::vector<int> v_RH_r26_ieta;
660 std::vector<int> v_RH_r26_iphi;
661 std::vector<double> v_RH_r26_ene;
662 std::vector<int> v_RH_r44_ieta;
663 std::vector<int> v_RH_r44_iphi;
664 std::vector<double> v_RH_r44_ene;
668 for (
int i = 0 ;
i < a_size ;
i++){
671 std::map<std::string, double> hsimInfoCone;
672 double hsimCone = -999.0, hCone = -999.0;
673 double distFromHotCell = -99.0;
674 int ietaFromHotCell = -99;
675 int iphiFromHotCell = -99;
676 int ietaHotCell = -99;
677 int iphiHotCell = -99;
678 int nRecHitsCone = -999;
679 int nSimHitsCone = -999;
681 std::vector<int> multiplicityCone;
682 std::vector<DetId> coneRecHitDetIds;
685 a_coneR[
i], trackMomAtHcal, nSimHitsCone);
689 bool makeHitmaps =
false;
690 if (a_coneR[i] == 26.23 && makeHitmaps)
694 a_coneR[i], trackMomAtHcal,nRecHitsCone,
695 v_RH_r26_ieta, v_RH_r26_iphi, v_RH_r26_ene,
696 coneRecHitDetIds, distFromHotCell,
697 ietaHotCell, iphiHotCell, gposHotCell);
699 else if (a_coneR[i] == 43.72 && makeHitmaps)
703 a_coneR[i], trackMomAtHcal,nRecHitsCone,
704 v_RH_r44_ieta, v_RH_r44_iphi, v_RH_r44_ene,
705 coneRecHitDetIds, distFromHotCell,
706 ietaHotCell, iphiHotCell, gposHotCell);
712 a_coneR[i], trackMomAtHcal, nRecHitsCone,
713 coneRecHitDetIds, distFromHotCell,
714 ietaHotCell, iphiHotCell, gposHotCell);
719 if (ietaHotCell != 99){
720 ietaFromHotCell = ietaHotCell-ClosestCell_HcalDetId.ieta();
721 iphiFromHotCell = iphiHotCell-ClosestCell_HcalDetId.iphi();
726 hsimInfoCone = spr::eHCALSimInfoCone(iEvent,pcalohh, SimTk, SimVtx, pTrack, *associate, geo, hpoint1, point1, a_coneR[i], trackMomAtHcal, multiplicityCone);
738 v_hsimInfoConeMatched .push_back(hsimInfoCone[
"eMatched" ]);
739 v_hsimInfoConeRest .push_back(hsimInfoCone[
"eRest" ]);
740 v_hsimInfoConePhoton .push_back(hsimInfoCone[
"eGamma" ]);
741 v_hsimInfoConeNeutHad .push_back(hsimInfoCone[
"eNeutralHad"]);
742 v_hsimInfoConeCharHad .push_back(hsimInfoCone[
"eChargedHad"]);
743 v_hsimInfoConePdgMatched.push_back(hsimInfoCone[
"pdgMatched" ]);
744 v_hsimInfoConeTotal .push_back(hsimInfoCone[
"eTotal" ]);
746 v_hsimInfoConeNMatched .push_back(multiplicityCone.at(0));
748 v_hsimInfoConeNTotal .push_back(multiplicityCone.at(1));
749 v_hsimInfoConeNNeutHad .push_back(multiplicityCone.at(2));
750 v_hsimInfoConeNCharHad .push_back(multiplicityCone.at(3));
751 v_hsimInfoConeNPhoton .push_back(multiplicityCone.at(4));
752 v_hsimInfoConeNRest .push_back(multiplicityCone.at(5));
754 v_hsimCone .push_back(hsimCone );
755 v_nSimHitsCone .push_back(nSimHitsCone );
757 v_hCone .push_back(hCone );
758 v_nRecHitsCone .push_back(nRecHitsCone );
760 v_distFromHotCell .push_back(distFromHotCell );
761 v_ietaFromHotCell .push_back(ietaFromHotCell );
762 v_iphiFromHotCell .push_back(iphiFromHotCell );
793 t_e3x3 ->push_back(e3x3 );
797 t_h3x3 ->push_back(h3x3 );
798 t_h5x5 ->push_back(h5x5 );
810 t_simP ->push_back(simP );
936 double tempgen_TH[22] = { 0.0, 1.0, 2.0, 3.0, 4.0,
937 5.0, 6.0, 7.0, 8.0, 9.0,
938 10.0, 12.0, 15.0, 20.0, 25.0,
939 30.0, 40.0, 50.0, 60.0, 70.0, 80.0, 100};
943 double tempgen_Eta[5] = {0.0, 0.5, 1.1, 1.7, 2.0};
962 t_trkP =
new std::vector<double>();
963 t_trkPt =
new std::vector<double>();
964 t_trkEta =
new std::vector<double>();
965 t_trkPhi =
new std::vector<double>();
967 t_e3x3 =
new std::vector<double>();
968 t_v_eDR =
new std::vector<std::vector<double> >();
969 t_v_eMipDR =
new std::vector<std::vector<double> >();
971 t_h3x3 =
new std::vector<double>();
972 t_h5x5 =
new std::vector<double>();
978 t_simP =
new std::vector<double>();
1038 t_v_hsimCone =
new std::vector<std::vector<double> >();
1041 t_v_hCone =
new std::vector<std::vector<double> >();
1065 t_hltHE =
new std::vector<int>();
1066 t_hltHB =
new std::vector<int>();
1083 t_irun =
new std::vector<unsigned int>();
1084 t_ievt =
new std::vector<unsigned int>();
1085 t_ilum =
new std::vector<unsigned int>();
1233 std::cout <<
"Number of Events Processed " <<
nEVT <<
" failed L1 "
1242 hRawPt =
fs->
make<TH1F>(
"hRawPt ",
"hRawPt ", 100, 0.0, 100.0);
1243 hRawP =
fs->
make<TH1F>(
"hRawP ",
"hRawP ", 100, 0.0, 100.0);
1244 hRawEta =
fs->
make<TH1F>(
"hRawEta",
"hRawEta", 15, 0.0, 3.0);
1245 hRawPhi =
fs->
make<TH1F>(
"hRawPhi",
"hRawPhi", 100, -3.2, 3.2);
1251 ntp->Branch(
"nEVT" , &
nEVT ,
"nEVT/I" );
1255 ntp->Branch(
"nTRK", &
nTRK,
"nTRK/I");
1256 ntp->Branch(
"nRawTRK" , &
nRawTRK ,
"nRawTRK/I" );
1258 ntp->Branch(
"nFailPt" , &
nFailPt ,
"nFailPt/I" );
1259 ntp->Branch(
"nFailEta" , &
nFailEta ,
"nFailEta/I" );
1279 ntp->Branch(
"trkP" ,
"vector<double>", &
t_trkP );
1280 ntp->Branch(
"trkPt" ,
"vector<double>", &
t_trkPt );
1281 ntp->Branch(
"trkEta" ,
"vector<double>", &
t_trkEta );
1282 ntp->Branch(
"trkPhi" ,
"vector<double>", &
t_trkPhi );
1283 ntp->Branch(
"e3x3" ,
"vector<double>", &
t_e3x3 );
1285 ntp->Branch(
"e3x3" ,
"vector<double>" , &
t_e3x3 );
1286 ntp->Branch(
"v_eDR" ,
"vector<vector<double> >", &
t_v_eDR);
1287 ntp->Branch(
"v_eMipDR" ,
"vector<vector<double> >", &
t_v_eMipDR);
1289 ntp->Branch(
"h3x3" ,
"vector<double>", &
t_h3x3 );
1290 ntp->Branch(
"h5x5" ,
"vector<double>", &
t_h5x5 );
1295 ntp->Branch(
"simP" ,
"vector<double>", &
t_simP );
1296 ntp->Branch(
"hsim3x3" ,
"vector<double>", &
t_hsim3x3 );
1297 ntp->Branch(
"hsim5x5" ,
"vector<double>", &
t_hsim5x5 );
1358 ntp->Branch(
"v_hCone" ,
"vector<vector<double> >",&
t_v_hCone );
1380 ntp->Branch(
"v_hltHB" ,
"vector<int>",&
t_hltHB);
1381 ntp->Branch(
"v_hltHE" ,
"vector<int>",&
t_hltHE);
1397 ntp->Branch(
"irun" ,
"vector<unsigned int>", &
t_irun);
1398 ntp->Branch(
"ievt" ,
"vector<unsigned int>", &
t_ievt);
1399 ntp->Branch(
"ilum" ,
"vector<unsigned int>", &
t_ilum);
1406 std::string theTrackQuality =
"highPurity";
1410 <<
" TrackMmentum " << pTrack->
momentum()
1411 <<
" (pt,eta,phi)(" << pTrack->
pt()<<
","<<pTrack->
eta()<<
","<<pTrack->
phi()<<
")"
1412 <<
" p " << pTrack->
p() <<
"\n"
1415 <<
" d0 " << pTrack->
d0() <<
"\n"
1417 <<
" TrackQuality " << pTrack->
qualityName(trackQuality_) <<
" " << pTrack->
quality(trackQuality_)
1434 double pi = 3.141592654;
1435 double twopi = 6.283185307;
1439 if (diff < pi){
return diff;}
else {
return corr;}
1444 double eta2,
double phi2) {
1445 double deta = eta1 - eta2;
1446 double dphi =
DeltaPhi(phi1, phi2);
1447 return std::sqrt(deta*deta + dphi*dphi);
std::vector< int > * t_hsim5x5NTotal
std::vector< std::vector< double > > * t_v_distFromHotCell
double qoverp() const
q/p
std::vector< double > * t_hsim5x5CharHad
double p() const
momentum vector magnitude
T getParameter(std::string const &) const
const CaloSubdetectorGeometry * getSubdetectorGeometry(const DetId &id) const
access the subdetector geometry for the given subdetector directly
EventNumber_t event() const
std::vector< std::vector< double > > * t_v_hmaxNearP_goodTrk
T getUntrackedParameter(std::string const &, T const &) const
std::vector< std::vector< int > > * t_v_hlTriggers
std::vector< double > * t_trkEcalEne
virtual edm::TriggerNames const & triggerNames(edm::TriggerResults const &triggerResults) const
std::vector< std::vector< double > > * t_v_hsimCone
TrackAssociatorParameters parameters_
static std::string qualityName(TrackQuality)
std::vector< int > * t_hltJet30
std::vector< double > * t_trkPt
std::vector< int > * t_ietaFromHotCell_h5x5
void eCaloSimInfo(std::vector< DetId > vdets, const CaloGeometry *geo, edm::Handle< T > &hitsEB, edm::Handle< T > &hitsEE, edm::Handle< edm::SimTrackContainer > &SimTk, edm::Handle< edm::SimVertexContainer > &SimVtx, edm::SimTrackContainer::const_iterator trkInfo, caloSimInfo &info, double timeCut=150, bool debug=false)
std::vector< double > * t_nRH_h3x3
std::vector< double > * t_distFromHotCell_h3x3
const Vector & momentum() const
track momentum vector
std::vector< std::vector< int > > * t_v_hsimInfoConeNCharHad
std::vector< int > * t_hsim5x5NNeutHad
std::vector< double > * t_hsim5x5Photon
double d0() const
dxy parameter in perigee convention (d0 = - dxy)
double getDistInPlaneTrackDir(const GlobalPoint &caloPoint, const GlobalVector &caloVector, const GlobalPoint &rechitPoint)
std::vector< int > * t_hltMinBiasHcal
std::vector< std::vector< double > > * t_v_cone_hmaxNearP_goodTrk
std::vector< double > * t_hsim3x3CharHad
std::vector< int > * t_hsim5x5NPhoton
std::vector< std::vector< double > > * t_v_RH_r44_ene
std::map< std::string, double > eHCALSimInfo(const edm::Event &, const HcalTopology *topology, const DetId &det, const CaloGeometry *geo, edm::Handle< T > &hits, edm::Handle< edm::SimTrackContainer > &SimTk, edm::Handle< edm::SimVertexContainer > &SimVtx, const reco::Track *pTrack, TrackerHitAssociator &associate, int ieta, int iphi, double timeCut=150, bool includeHO=false, bool debug=false)
std::vector< int > * t_iphiFromHotCell_h3x3
double normalizedChi2() const
chi-squared divided by n.d.o.f. (or chi-squared * 1e6 if n.d.o.f. is zero)
std::vector< std::vector< int > > * t_v_cone_hnLayers_maxNearP
std::vector< double > * t_hsim5x5PdgMatched
std::vector< double > * t_hsim3x3NeutHad
std::vector< double > * t_nRH_h5x5
TrackQuality
track quality
#define DEFINE_FWK_MODULE(type)
static FreeTrajectoryState getFreeTrajectoryState(const edm::EventSetup &, const reco::Track &)
get FreeTrajectoryState from different track representations
std::vector< std::vector< int > > * t_v_hnLayers_maxNearP
std::vector< int > * t_hltHB
std::vector< std::vector< double > > * t_v_hmaxNearP
std::vector< std::vector< double > > * t_v_RH_h3x3_ene
void useDefaultPropagator()
use the default propagator
std::vector< int > * t_hsim5x5NCharHad
std::vector< std::vector< int > > * t_v_hsimInfoConeNNeutHad
std::vector< std::vector< int > > * t_v_nRecHitsCone
double phi() const
azimuthal angle of momentum vector
std::vector< std::vector< int > > * t_v_hsimInfoConeNMatched
unsigned short numberOfLostHits() const
number of cases where track crossed a layer without getting a hit.
std::vector< double > * t_trkP
std::vector< int > * t_hltL1SingleEG5
std::vector< int > * t_hsim5x5NRest
std::vector< double > * t_hsim5x5NeutHad
std::vector< int > * t_hltJet50
std::vector< std::vector< double > > * t_v_cone_hmaxNearP
std::vector< double > * t_simP
const Point & referencePoint() const
Reference point on the track.
std::vector< int > * t_hsim3x3NCharHad
std::vector< std::vector< int > > * t_v_iphiFromHotCell
std::vector< std::vector< int > > * t_v_hnNearTRKs
std::vector< std::vector< int > > * t_v_cone_htrkQual_maxNearP
math::XYZPoint trkGlobPosAtHcal
std::vector< std::vector< double > > * t_v_RH_r26_ene
LuminosityBlockNumber_t luminosityBlock() const
uint32_t rawId() const
get the raw id
std::vector< int > * t_hltDoubleLooseIsoTau15_Trk5
double eHCALmatrix(const HcalTopology *topology, const DetId &det, edm::Handle< T > &hits, int ieta, int iphi, bool includeHO=false, bool algoNew=true, double hbThr=-100, double heThr=-100, double hfThr=-100, double hoThr=-100, double tMin=-500, double tMax=500, bool debug=false)
std::vector< int > * t_hltJet140
double eta() const
pseudorapidity of momentum vector
std::vector< int > * t_hltMinBiasPixel
std::vector< double > * t_trkPhi
double eCone_hcal(const CaloGeometry *geo, edm::Handle< T > &hits, const GlobalPoint &hpoint1, const GlobalPoint &point1, double dR, const GlobalVector &trackMom, int &nRecHits, double hbThr=-100, double heThr=-100, double hfThr=-100, double hoThr=-100, double tMin=-500, double tMax=500)
std::vector< double > * t_hsim3x3Total
std::vector< int > * t_hltHE
int trackerLayersWithMeasurement() const
std::vector< std::vector< int > > * t_v_RH_h3x3_iphi
std::vector< int > * t_iphiFromHotCell_h5x5
std::vector< std::vector< double > > * t_v_hsimInfoConePdgMatched
double pt() const
track transverse momentum
std::vector< std::vector< int > > * t_v_htrkQual_maxNearP
std::vector< int > * t_hltMinBiasEcal
std::vector< std::vector< int > > * t_v_RH_r44_iphi
std::vector< double > * t_hsim5x5Matched
std::vector< std::vector< double > > * t_v_hsimInfoConeTotal
std::vector< std::vector< double > > * t_v_RH_h5x5_ene
double DeltaPhi(double v1, double v2)
std::vector< std::vector< int > > * t_v_hsimInfoConeNRest
LuminosityBlock const & getLuminosityBlock() const
edm::SimTrackContainer::const_iterator matchedSimTrack(const edm::Event &iEvent, edm::Handle< edm::SimTrackContainer > &SimTk, edm::Handle< edm::SimVertexContainer > &SimVtx, const reco::Track *pTrack, TrackerHitAssociator &associate, bool debug=false)
unsigned short numberOfValidHits() const
number of valid hits found
std::vector< std::vector< double > > * t_v_hsimInfoConeCharHad
edm::InputTag _L1extraFwdJetSource
const HitPattern & hitPattern() const
Access the hit pattern, indicating in which Tracker layers the track has hits.
std::vector< double > * t_hsim5x5Total
std::vector< double > * t_hsim3x3Photon
std::vector< double > * t_hsim3x3PdgMatched
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
std::vector< std::vector< int > > * t_v_ietaFromHotCell
std::vector< double > * t_hsim5x5Rest
std::vector< int > * t_hltJet110
std::vector< std::vector< double > > * t_v_eMipDR
std::vector< int > * t_hltL1Jet15
double qoverpError() const
error on signed transverse curvature
virtual DetId getClosestCell(const GlobalPoint &r) const
std::vector< int > * t_hsim3x3NRest
std::vector< std::vector< double > > * t_v_hsimInfoConeRest
std::vector< std::vector< int > > * t_v_hsimInfoConeNPhoton
std::vector< std::vector< int > > * t_v_RH_r26_ieta
std::vector< double > * t_dtFromLeadJet
std::vector< std::vector< int > > * t_v_RH_h5x5_ieta
std::vector< std::vector< int > > * t_v_RH_h3x3_ieta
std::vector< unsigned int > * t_ievt
std::vector< double > * t_trkNLayersCrossed
edm::InputTag _L1extraCenJetSource
static TrackQuality qualityByName(const std::string &name)
std::vector< std::vector< double > > * t_v_hsimInfoConeNeutHad
std::vector< std::vector< int > > * t_v_nSimHitsCone
std::vector< int > * t_hltSingleIsoTau30_Trk5
std::vector< double > * t_hsim5x5
GlobalVector trkMomAtEcal
std::string const & triggerName(unsigned int index) const
std::vector< std::vector< int > > * t_v_RH_h5x5_iphi
T const * product() const
IsolatedTracksCone(const edm::ParameterSet &)
std::vector< std::vector< int > > * t_v_hsimInfoConeNTotal
std::vector< double > * t_hsim3x3Matched
T const * product() const
bool quality(const TrackQuality) const
Track quality.
std::vector< int > * t_hsim3x3NNeutHad
virtual void analyze(const edm::Event &, const edm::EventSetup &)
edm::Service< TFileService > fs
GlobalVector trkMomAtHcal
std::vector< int > * t_hltZeroBias
std::vector< double > * t_h5x5
std::vector< double > * t_trkNOuterHits
std::vector< std::vector< double > > * t_v_hCone
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, double ebThr=-100, double eeThr=-100, double tMin=-500, double tMax=500)
std::vector< int > * t_hsim3x3NPhoton
std::vector< double > * t_hsim3x3Rest
std::vector< double > * t_hsim3x3
std::vector< int > * t_hsim3x3NMatched
std::vector< std::vector< int > > * t_v_RH_r44_ieta
std::vector< double > * t_trkHcalEne
std::vector< unsigned int > * t_irun
std::vector< int > * t_hltJet180
std::vector< int > * t_hsim3x3NTotal
TrackDetMatchInfo associate(const edm::Event &, const edm::EventSetup &, const FreeTrajectoryState &, const AssociatorParameters &)
T * make() const
make new ROOT object
void printTrack(const reco::Track *pTrack)
std::vector< int > * t_ietaFromHotCell_h3x3
math::XYZPoint trkGlobPosAtEcal
Track position at different parts of the calorimeter.
int charge() const
track electric charge
std::vector< double > * t_distFromHotCell_h5x5
edm::InputTag _L1extraTauJetSource
std::vector< double > * t_e3x3
void printHitPattern(int position, std::ostream &stream) const
double DeltaR(double eta1, double phi1, double eta2, double phi2)
std::vector< double > * t_trkEta
std::vector< double > * t_h3x3
double coneChargeIsolation(const edm::Event &iEvent, const edm::EventSetup &iSetup, reco::TrackCollection::const_iterator trkItr, edm::Handle< reco::TrackCollection > trkCollection, TrackDetectorAssociator &associator, TrackAssociatorParameters ¶meters_, std::string theTrackQuality, int &nNearTRKs, int &nLayers_maxNearP, int &trkQual_maxNearP, double &maxNearP_goodTrk, const GlobalPoint &hpoint1, const GlobalVector &trackMom, double dR)
std::vector< std::vector< double > > * t_v_hsimInfoConePhoton
std::vector< unsigned int > * t_ilum
TrackDetectorAssociator * trackAssociator_
std::vector< int > * t_hltJet80
std::vector< std::vector< double > > * t_v_eDR
void loadParameters(const edm::ParameterSet &)
std::vector< std::vector< double > > * t_v_hsimInfoConeMatched
std::vector< std::vector< int > > * t_v_RH_r26_iphi
std::vector< int > * t_hsim5x5NMatched
std::vector< std::vector< int > > * t_v_cone_hnNearTRKs
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)