CMS 3D CMS Logo

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

Public Member Functions

 PatZjetsJetAnalyzer (const edm::ParameterSet &)
 
 ~PatZjetsJetAnalyzer () override
 
- 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 &, const edm::EventSetup &) override
 
void beginJob () override
 
void endJob () override
 

Private Attributes

std::map< std::string, TH1F * > histContainer_
 
edm::EDGetTokenT< edm::View< pat::Jet > > srcToken_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- 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 15 of file PatZjetsJetAnalyzer.cc.

Constructor & Destructor Documentation

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

Definition at line 34 of file PatZjetsJetAnalyzer.cc.

35  : histContainer_(),
T getUntrackedParameter(std::string const &, T const &) const
EDGetTokenT< ProductType > consumes(edm::InputTag const &tag)
edm::EDGetTokenT< edm::View< pat::Jet > > srcToken_
std::map< std::string, TH1F * > histContainer_
PatZjetsJetAnalyzer::~PatZjetsJetAnalyzer ( )
override

Definition at line 38 of file PatZjetsJetAnalyzer.cc.

38 {}

Member Function Documentation

void PatZjetsJetAnalyzer::analyze ( const edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivate

Definition at line 40 of file PatZjetsJetAnalyzer.cc.

References pat::Jet::emEnergyFraction(), reco::LeafCandidate::eta(), edm::Event::getByToken(), pat::Jet::getCaloConstituent(), pat::Jet::getCaloConstituents(), histContainer_, mps_fire::i, metsig::jet, singleTopDQM_cfi::jets, reco::LeafCandidate::phi(), reco::LeafCandidate::pt(), and srcToken_.

40  {
41  // get electron collection
43  iEvent.getByToken(srcToken_, jets);
44 
45  // loop jets
46  for (edm::View<pat::Jet>::const_iterator ijet = jets->begin(); ijet != jets->end(); ++ijet) {
47  // fill simple histograms
48  pat::Jet jet = ijet->correctedJet("had", "uds");
49  histContainer_["pt"]->Fill(jet.pt());
50  histContainer_["eta"]->Fill(jet.eta());
51  histContainer_["phi"]->Fill(jet.phi());
52  histContainer_["emf"]->Fill(jet.emEnergyFraction());
53  for (unsigned int i = 0; i < jet.getCaloConstituents().size(); ++i) {
54  histContainer_["dEta"]->Fill(jet.getCaloConstituent(i)->eta() - jet.eta());
55  }
56  }
57 }
double eta() const final
momentum pseudorapidity
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:525
double pt() const final
transverse momentum
std::vector< CaloTowerPtr > const & getCaloConstituents() const
float emEnergyFraction() const
returns the jet electromagnetic energy fraction
Definition: Jet.h:326
edm::EDGetTokenT< edm::View< pat::Jet > > srcToken_
Analysis-level calorimeter jet class.
Definition: Jet.h:77
std::map< std::string, TH1F * > histContainer_
boost::indirect_iterator< typename seq_t::const_iterator > const_iterator
Definition: View.h:86
CaloTowerPtr getCaloConstituent(unsigned fIndex) const
convert generic constituent to specific type
double phi() const final
momentum azimuthal angle
void PatZjetsJetAnalyzer::beginJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 59 of file PatZjetsJetAnalyzer.cc.

References histContainer_, and TFileService::make().

59  {
60  // register to the TFileService
62 
63  // book histograms:
64  histContainer_["pt"] = fs->make<TH1F>("pt", "pt", 150, 0., 150.);
65  histContainer_["eta"] = fs->make<TH1F>("eta", "eta", 50, 0., 5.);
66  histContainer_["phi"] = fs->make<TH1F>("phi", "phi", 60, 3.14, 3.14);
67  histContainer_["emf"] = fs->make<TH1F>("emf", "emf", 40, 0., 1.);
68  histContainer_["dEta"] = fs->make<TH1F>("dEta", "dEta", 40, 0., 1.);
69 }
T * make(const Args &...args) const
make new ROOT object
Definition: TFileService.h:64
std::map< std::string, TH1F * > histContainer_
void PatZjetsJetAnalyzer::endJob ( void  )
overrideprivatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 71 of file PatZjetsJetAnalyzer.cc.

References DEFINE_FWK_MODULE.

71 {}

Member Data Documentation

std::map<std::string, TH1F*> PatZjetsJetAnalyzer::histContainer_
private

Definition at line 28 of file PatZjetsJetAnalyzer.cc.

Referenced by analyze(), and beginJob().

edm::EDGetTokenT<edm::View<pat::Jet> > PatZjetsJetAnalyzer::srcToken_
private

Definition at line 31 of file PatZjetsJetAnalyzer.cc.

Referenced by analyze().