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 Attributes
HcalHitAnalyzer Class Reference

#include <HcalHitAnalyzer.h>

Inheritance diagram for HcalHitAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (edm::Event const &e, edm::EventSetup const &c)
 
 HcalHitAnalyzer (edm::ParameterSet const &conf)
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
std::vector< ConsumesInfoconsumesInfo () const
 
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
void modulesWhoseProductsAreConsumed (std::vector< ModuleDescription const * > &modules, ProductRegistry const &preg, std::map< std::string, ModuleDescription const * > const &labelsToDesc, std::string const &processName) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

CaloHitAnalyzer hbheAnalyzer_
 
HBHEHitFilter hbheFilter_
 
edm::InputTag hbheRecHitCollectionTag_
 
CaloHitAnalyzer hfAnalyzer_
 
HFHitFilter hfFilter_
 
edm::InputTag hfRecHitCollectionTag_
 
CaloHitAnalyzer hoAnalyzer_
 
HOHitFilter hoFilter_
 
edm::InputTag hoRecHitCollectionTag_
 
HcalSimParameterMap simParameterMap_
 
CaloHitAnalyzer zdcAnalyzer_
 
ZDCHitFilter zdcFilter_
 

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 &)
 
- 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 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

Compares HCAL RecHits to SimHit

Rick Wilkinson, Caltech

Definition at line 23 of file HcalHitAnalyzer.h.

Constructor & Destructor Documentation

HcalHitAnalyzer::HcalHitAnalyzer ( edm::ParameterSet const &  conf)
explicit

Definition at line 7 of file HcalHitAnalyzer.cc.

9  hbheFilter_(),
10  hoFilter_(),
11  hfFilter_(true),
12  zdcFilter_(),
17  hbheRecHitCollectionTag_(conf.getParameter<edm::InputTag>("hbheRecHitCollectionTag")),
18  hoRecHitCollectionTag_(conf.getParameter<edm::InputTag>("hoRecHitCollectionTag")),
19  hfRecHitCollectionTag_(conf.getParameter<edm::InputTag>("hfRecHitCollectionTag"))
20 {
21 }
ZDCHitFilter zdcFilter_
CaloHitAnalyzer hfAnalyzer_
HcalSimParameterMap simParameterMap_
HOHitFilter hoFilter_
edm::InputTag hbheRecHitCollectionTag_
edm::InputTag hoRecHitCollectionTag_
CaloHitAnalyzer hbheAnalyzer_
edm::InputTag hfRecHitCollectionTag_
CaloHitAnalyzer hoAnalyzer_
tuple conf
Definition: dbtoconf.py:185
HBHEHitFilter hbheFilter_
HFHitFilter hfFilter_
CaloHitAnalyzer zdcAnalyzer_

Member Function Documentation

void HcalHitAnalyzer::analyze ( edm::Event const &  e,
edm::EventSetup const &  c 
)
virtual

Implements edm::EDAnalyzer.

Definition at line 36 of file HcalHitAnalyzer.cc.

References alignCSCRings::e, CaloHitAnalyzer::fillHits(), edm::Event::getByLabel(), hbheAnalyzer_, hbheRecHitCollectionTag_, hfAnalyzer_, hfRecHitCollectionTag_, hoAnalyzer_, hoRecHitCollectionTag_, and edm::Handle< T >::product().

36  {
37  // Step A: Get Inputs
39  e.getByLabel("mix", "g4SimHitsHcalHits",cf);
40  //e.getByLabel("mix", "ZDCHits", zdccf);
41 
42  // test access to SimHits for HcalHits and ZDC hits
43  std::auto_ptr<MixCollection<PCaloHit> > hits(new MixCollection<PCaloHit>(cf.product()));
44  //std::auto_ptr<MixCollection<PCaloHit> > zdcHits(new MixCollection<PCaloHit>(zdccf.product()));
45  hbheAnalyzer_.fillHits(*hits);
46  //hoAnalyzer_.fillHits(*hits);
47  //hfAnalyzer_.fillHits(*hits);
48  //zdcAnalyzer_.fillHits(*hits);
49  HcalHitAnalyzerImpl::analyze<HBHERecHitCollection>(e, hbheAnalyzer_, hbheRecHitCollectionTag_);
50  HcalHitAnalyzerImpl::analyze<HORecHitCollection>(e, hoAnalyzer_, hoRecHitCollectionTag_);
51  HcalHitAnalyzerImpl::analyze<HFRecHitCollection>(e, hfAnalyzer_, hfRecHitCollectionTag_);
52  //HcalHitAnalyzerImpl::analyze<ZDCRecHitCollection>(e, zdcAnalyzer_);
53 }
CaloHitAnalyzer hfAnalyzer_
edm::InputTag hbheRecHitCollectionTag_
edm::InputTag hoRecHitCollectionTag_
void fillHits(MixCollection< PCaloHit > &hits)
should be called each event
CaloHitAnalyzer hbheAnalyzer_
edm::InputTag hfRecHitCollectionTag_
CaloHitAnalyzer hoAnalyzer_
T const * product() const
Definition: Handle.h:81

Member Data Documentation

CaloHitAnalyzer HcalHitAnalyzer::hbheAnalyzer_
private

Definition at line 37 of file HcalHitAnalyzer.h.

Referenced by analyze().

HBHEHitFilter HcalHitAnalyzer::hbheFilter_
private

Definition at line 33 of file HcalHitAnalyzer.h.

edm::InputTag HcalHitAnalyzer::hbheRecHitCollectionTag_
private

Definition at line 42 of file HcalHitAnalyzer.h.

Referenced by analyze().

CaloHitAnalyzer HcalHitAnalyzer::hfAnalyzer_
private

Definition at line 39 of file HcalHitAnalyzer.h.

Referenced by analyze().

HFHitFilter HcalHitAnalyzer::hfFilter_
private

Definition at line 35 of file HcalHitAnalyzer.h.

edm::InputTag HcalHitAnalyzer::hfRecHitCollectionTag_
private

Definition at line 44 of file HcalHitAnalyzer.h.

Referenced by analyze().

CaloHitAnalyzer HcalHitAnalyzer::hoAnalyzer_
private

Definition at line 38 of file HcalHitAnalyzer.h.

Referenced by analyze().

HOHitFilter HcalHitAnalyzer::hoFilter_
private

Definition at line 34 of file HcalHitAnalyzer.h.

edm::InputTag HcalHitAnalyzer::hoRecHitCollectionTag_
private

Definition at line 43 of file HcalHitAnalyzer.h.

Referenced by analyze().

HcalSimParameterMap HcalHitAnalyzer::simParameterMap_
private

Definition at line 32 of file HcalHitAnalyzer.h.

CaloHitAnalyzer HcalHitAnalyzer::zdcAnalyzer_
private

Definition at line 40 of file HcalHitAnalyzer.h.

ZDCHitFilter HcalHitAnalyzer::zdcFilter_
private

Definition at line 36 of file HcalHitAnalyzer.h.