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
CastorHitAnalyzer Class Reference

#include <CastorHitAnalyzer.h>

Inheritance diagram for CastorHitAnalyzer:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

virtual void analyze (edm::Event const &e, edm::EventSetup const &c)
 
 CastorHitAnalyzer (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 castorAnalyzer_
 
CastorHitFilter castorFilter_
 
edm::InputTag castorRecHitCollectionTag_
 
std::string hitReadoutName_
 
CastorSimParameterMap simParameterMap_
 

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 RecHits to SimHit

P. Katsas, Univ. of Athens

Definition at line 19 of file CastorHitAnalyzer.h.

Constructor & Destructor Documentation

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

Definition at line 7 of file CastorHitAnalyzer.cc.

8  : hitReadoutName_("CastorHits"),
10  castorFilter_(),
12  castorRecHitCollectionTag_(conf.getParameter<edm::InputTag>("castorRecHitCollectionTag"))
13 {
14 }
CastorHitFilter castorFilter_
edm::InputTag castorRecHitCollectionTag_
CastorSimParameterMap simParameterMap_
CaloHitAnalyzer castorAnalyzer_
tuple conf
Definition: dbtoconf.py:185
std::string hitReadoutName_

Member Function Documentation

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

Implements edm::EDAnalyzer.

Definition at line 33 of file CastorHitAnalyzer.cc.

References castorAnalyzer_, castorRecHitCollectionTag_, alignCSCRings::e, CaloHitAnalyzer::fillHits(), edm::Event::getByLabel(), and edm::Handle< T >::product().

33  {
35 e.getByLabel("mix", "g4SimHitsCastorFI", castorcf);
36 
37 
38  // access to SimHits
39 std::auto_ptr<MixCollection<PCaloHit> > hits(new MixCollection<PCaloHit>(castorcf.product()));
41  CastorHitAnalyzerImpl::analyze<CastorRecHitCollection>(e, castorAnalyzer_, castorRecHitCollectionTag_);
42  }
edm::InputTag castorRecHitCollectionTag_
void fillHits(MixCollection< PCaloHit > &hits)
should be called each event
CaloHitAnalyzer castorAnalyzer_
T const * product() const
Definition: Handle.h:81

Member Data Documentation

CaloHitAnalyzer CastorHitAnalyzer::castorAnalyzer_
private

Definition at line 31 of file CastorHitAnalyzer.h.

Referenced by analyze().

CastorHitFilter CastorHitAnalyzer::castorFilter_
private

Definition at line 30 of file CastorHitAnalyzer.h.

edm::InputTag CastorHitAnalyzer::castorRecHitCollectionTag_
private

Definition at line 32 of file CastorHitAnalyzer.h.

Referenced by analyze().

std::string CastorHitAnalyzer::hitReadoutName_
private

Definition at line 28 of file CastorHitAnalyzer.h.

CastorSimParameterMap CastorHitAnalyzer::simParameterMap_
private

Definition at line 29 of file CastorHitAnalyzer.h.