CMS 3D CMS Logo

List of all members | Public Types | Public Member Functions | Private Member Functions | Private Attributes
ZGlobalVsSAIsolationAnalyzer Class Reference
Inheritance diagram for ZGlobalVsSAIsolationAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Types

typedef math::XYZVector Vector
 
- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 

Public Member Functions

 ZGlobalVsSAIsolationAnalyzer (const edm::ParameterSet &cfg)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
 ~EDAnalyzer () override
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
void convertCurrentProcessAlias (std::string const &processName)
 Convert "@currentProcess" in InputTag process names to the actual current process name. More...
 
 EDConsumerBase ()
 
 EDConsumerBase (EDConsumerBase const &)=delete
 
 EDConsumerBase (EDConsumerBase &&)=default
 
ESProxyIndex const * esGetTokenIndices (edm::Transition iTrans) const
 
ProductResolverIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductResolverIndexAndSkipBit > &) const
 
std::vector< ProductResolverIndexAndSkipBit > const & itemsToGetFrom (BranchType iType) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
EDConsumerBase const & operator= (EDConsumerBase const &)=delete
 
EDConsumerBaseoperator= (EDConsumerBase &&)=default
 
bool registeredToConsume (ProductResolverIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
ProductResolverIndexAndSkipBit uncheckedIndexFrom (EDGetToken) const
 
void updateLookup (BranchType iBranchType, ProductResolverIndexHelper const &, bool iPrefetchMayGet)
 
void updateLookup (eventsetup::ESRecordsToProxyIndices const &)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Member Functions

void analyze (const edm::Event &event, const edm::EventSetup &setup) override
 
void endJob () override
 
void evaluate (const reco::Candidate *dau)
 
bool isolated (const Direction &dir, const pat::IsoDeposit *trkIsoDep, const pat::IsoDeposit *ecalIsoDep, const pat::IsoDeposit *hcalIsoDep)
 

Private Attributes

double alpha
 
double beta
 
double dREcal
 
double dRHcal
 
double dRTrk
 
double dRVeto
 
double etEcalThreshold
 
double etHcalThreshold
 
double isoCut_
 
double ptThreshold
 
unsigned long selGlobal_
 
unsigned long selSA_
 
EDGetTokenT< CandidateViewsrcToken_
 
unsigned long totGlobal_
 
unsigned long totSA_
 

Additional Inherited Members

- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
static bool wantsGlobalLuminosityBlocks ()
 
static bool wantsGlobalRuns ()
 
static bool wantsStreamLuminosityBlocks ()
 
static bool wantsStreamRuns ()
 
- Protected Member Functions inherited from edm::EDConsumerBase
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > consumes (edm::InputTag const &tag)
 
EDGetToken consumes (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken consumes (TypeToGet const &id, edm::InputTag const &tag)
 
ConsumesCollector consumesCollector ()
 Use a ConsumesCollector to gather consumes information from helper functions. More...
 
template<typename ProductType , BranchType B = InEvent>
void consumesMany ()
 
void consumesMany (const TypeToGet &id)
 
template<BranchType B>
void consumesMany (const TypeToGet &id)
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes ()
 
template<typename ESProduct , typename ESRecord , Transition Tr = Transition::Event>
auto esConsumes (ESInputTag const &tag)
 
template<typename ProductType , BranchType B = InEvent>
EDGetTokenT< ProductType > mayConsume (edm::InputTag const &tag)
 
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 
template<BranchType B>
EDGetToken mayConsume (const TypeToGet &id, edm::InputTag const &tag)
 

Detailed Description

Definition at line 33 of file ZGlobalVsSAIsolationAnalyzer.cc.

Member Typedef Documentation

Definition at line 35 of file ZGlobalVsSAIsolationAnalyzer.cc.

Constructor & Destructor Documentation

ZGlobalVsSAIsolationAnalyzer::ZGlobalVsSAIsolationAnalyzer ( const edm::ParameterSet cfg)

Definition at line 55 of file ZGlobalVsSAIsolationAnalyzer.cc.

56  : srcToken_(consumes<CandidateView>(cfg.getParameter<InputTag>("src"))),
57  dRVeto(cfg.getParameter<double>("veto")),
58  dRTrk(cfg.getParameter<double>("deltaRTrk")),
59  dREcal(cfg.getParameter<double>("deltaREcal")),
60  dRHcal(cfg.getParameter<double>("deltaRHcal")),
61  ptThreshold(cfg.getParameter<double>("ptThreshold")),
62  etEcalThreshold(cfg.getParameter<double>("etEcalThreshold")),
63  etHcalThreshold(cfg.getParameter<double>("etHcalThreshold")),
64  alpha(cfg.getParameter<double>("alpha")),
65  beta(cfg.getParameter<double>("beta")),
66  isoCut_(cfg.getParameter<double>("isoCut")),
67  selGlobal_(0),
68  selSA_(0),
69  totGlobal_(0),
70  totSA_(0) {}
T getParameter(std::string const &) const
EDGetTokenT< CandidateView > srcToken_

Member Function Documentation

void ZGlobalVsSAIsolationAnalyzer::analyze ( const edm::Event event,
const edm::EventSetup setup 
)
overrideprivate

Definition at line 115 of file ZGlobalVsSAIsolationAnalyzer.cc.

References reco::Candidate::daughter(), WZMuSkim_cff::dimuons, evaluate(), mps_fire::i, edm::View< T >::size(), and srcToken_.

115  {
117  event.getByToken(srcToken_, dimuons);
118  for (unsigned int i = 0; i < dimuons->size(); ++i) {
119  const Candidate& zmm = (*dimuons)[i];
120  evaluate(zmm.daughter(0));
121  evaluate(zmm.daughter(1));
122  }
123 }
EDGetTokenT< CandidateView > srcToken_
virtual const Candidate * daughter(size_type i) const =0
return daughter at a given position, i = 0, ... numberOfDaughters() - 1 (read only mode) ...
size_type size() const
void evaluate(const reco::Candidate *dau)
void ZGlobalVsSAIsolationAnalyzer::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 125 of file ZGlobalVsSAIsolationAnalyzer.cc.

References gather_cfg::cout, DEFINE_FWK_MODULE, runTheMatrix::err, selGlobal_, selSA_, mathSSE::sqrt(), totGlobal_, and totSA_.

125  {
126  cout << "Isolation efficiency report:" << endl;
127  double eff, err;
128  eff = double(selGlobal_) / double(totGlobal_);
129  err = sqrt(eff * (1. - eff) / double(totGlobal_));
130  cout << "Global: " << selGlobal_ << "/" << totGlobal_ << " = " << eff << "+/-" << err << endl;
131  eff = double(selSA_) / double(totSA_);
132  err = sqrt(eff * (1. - eff) / double(totSA_));
133  cout << "St.Al.: " << selSA_ << "/" << totSA_ << " = " << eff << "+/-" << err << endl;
134 }
T sqrt(T t)
Definition: SSEVec.h:19
void ZGlobalVsSAIsolationAnalyzer::evaluate ( const reco::Candidate dau)
private

Definition at line 91 of file ZGlobalVsSAIsolationAnalyzer.cc.

References DeadROC_duringRun::dir, pat::EcalIso, reco::LeafCandidate::eta(), Exception, reco::Candidate::get(), pat::HcalIso, edm::errors::InvalidReference, pat::Lepton< LeptonType >::isoDeposit(), isolated(), reco::Candidate::masterClone(), amptDefaultParameters_cff::mu, reco::LeafCandidate::phi(), selGlobal_, selSA_, totGlobal_, totSA_, and pat::TrackIso.

Referenced by analyze().

91  {
92  const pat::Muon* mu = dynamic_cast<const pat::Muon*>(&*dau->masterClone());
93  if (mu == nullptr)
94  throw Exception(errors::InvalidReference) << "Daughter is not a muon!\n";
95  const pat::IsoDeposit* trkIsoDep = mu->isoDeposit(pat::TrackIso);
96  const pat::IsoDeposit* ecalIsoDep = mu->isoDeposit(pat::EcalIso);
97  const pat::IsoDeposit* hcalIsoDep = mu->isoDeposit(pat::HcalIso);
98  // global muon
99  {
100  Direction dir = Direction(mu->eta(), mu->phi());
101  if (isolated(dir, trkIsoDep, ecalIsoDep, hcalIsoDep))
102  selGlobal_++;
103  totGlobal_++;
104  }
105  // stand-alone
106  {
108  Direction dir = Direction(sa->eta(), sa->phi());
109  if (isolated(dir, trkIsoDep, ecalIsoDep, hcalIsoDep))
110  selSA_++;
111  totSA_++;
112  }
113 }
double eta() const final
momentum pseudorapidity
stand alone muon component tag
Definition: RecoCandidate.h:77
const IsoDeposit * isoDeposit(IsolationKeys key) const
Returns the IsoDeposit associated with some key, or a null pointer if it is not available.
Definition: Lepton.h:182
virtual const CandidateBaseRef & masterClone() const =0
edm::Ref< TrackCollection > TrackRef
persistent reference to a Track
Definition: TrackFwd.h:20
T get() const
get a component
Definition: Candidate.h:222
bool isolated(const Direction &dir, const pat::IsoDeposit *trkIsoDep, const pat::IsoDeposit *ecalIsoDep, const pat::IsoDeposit *hcalIsoDep)
double phi() const final
momentum azimuthal angle
Analysis-level muon class.
Definition: Muon.h:51
bool ZGlobalVsSAIsolationAnalyzer::isolated ( const Direction dir,
const pat::IsoDeposit trkIsoDep,
const pat::IsoDeposit ecalIsoDep,
const pat::IsoDeposit hcalIsoDep 
)
private

Definition at line 72 of file ZGlobalVsSAIsolationAnalyzer.cc.

References alpha, beta, dREcal, dRHcal, dRTrk, dRVeto, etEcalThreshold, etHcalThreshold, isoCut_, ptThreshold, reco::IsoDeposit::sumWithin(), and ZMuMuCategoriesSequences_cff::trkIso.

Referenced by evaluate().

75  {
76  IsoDeposit::AbsVetos vetoTrk, vetoEcal, vetoHcal;
77  vetoTrk.push_back(new ConeVeto(dir, dRVeto));
78  vetoTrk.push_back(new ThresholdVeto(ptThreshold));
79  vetoEcal.push_back(new ConeVeto(dir, 0.));
80  vetoEcal.push_back(new ThresholdVeto(etEcalThreshold));
81  vetoHcal.push_back(new ConeVeto(dir, 0.));
82  vetoHcal.push_back(new ThresholdVeto(etHcalThreshold));
83 
84  double trkIso = trkIsoDep->sumWithin(dir, dRTrk, vetoTrk);
85  double ecalIso = ecalIsoDep->sumWithin(dir, dREcal, vetoEcal);
86  double hcalIso = hcalIsoDep->sumWithin(dir, dRHcal, vetoHcal);
87  double iso = alpha * ((0.5 * (1 + beta) * ecalIso) + (0.5 * (1 - beta) * hcalIso)) + (1 - alpha) * trkIso;
88  return iso < isoCut_;
89 }
double sumWithin(double coneSize, const AbsVetos &vetos=AbsVetos(), bool skipDepositVeto=false) const
Definition: IsoDeposit.cc:137
std::vector< AbsVeto * > AbsVetos
Definition: IsoDeposit.h:43

Member Data Documentation

double ZGlobalVsSAIsolationAnalyzer::alpha
private

Definition at line 45 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::beta
private

Definition at line 45 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::dREcal
private

Definition at line 43 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::dRHcal
private

Definition at line 43 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::dRTrk
private

Definition at line 43 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::dRVeto
private

Definition at line 42 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::etEcalThreshold
private

Definition at line 44 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::etHcalThreshold
private

Definition at line 44 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::isoCut_
private

Definition at line 46 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

double ZGlobalVsSAIsolationAnalyzer::ptThreshold
private

Definition at line 44 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by isolated().

unsigned long ZGlobalVsSAIsolationAnalyzer::selGlobal_
private

Definition at line 47 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by endJob(), and evaluate().

unsigned long ZGlobalVsSAIsolationAnalyzer::selSA_
private

Definition at line 47 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by endJob(), and evaluate().

EDGetTokenT<CandidateView> ZGlobalVsSAIsolationAnalyzer::srcToken_
private

Definition at line 41 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by analyze().

unsigned long ZGlobalVsSAIsolationAnalyzer::totGlobal_
private

Definition at line 47 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by endJob(), and evaluate().

unsigned long ZGlobalVsSAIsolationAnalyzer::totSA_
private

Definition at line 47 of file ZGlobalVsSAIsolationAnalyzer.cc.

Referenced by endJob(), and evaluate().