CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
CastorDigiAnalyzer Class Reference

#include <CastorDigiAnalyzer.h>

Inheritance diagram for CastorDigiAnalyzer:
edm::one::EDAnalyzer<> edm::one::EDAnalyzerBase edm::EDConsumerBase

Public Member Functions

void analyze (edm::Event const &e, edm::EventSetup const &c) override
 
 CastorDigiAnalyzer (edm::ParameterSet const &conf)
 
- Public Member Functions inherited from edm::one::EDAnalyzer<>
 EDAnalyzer ()=default
 
SerialTaskQueueglobalLuminosityBlocksQueue () final
 
SerialTaskQueueglobalRunsQueue () final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
- Public Member Functions inherited from edm::one::EDAnalyzerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzerBase ()
 
ModuleDescription const & moduleDescription () const
 
bool wantsStreamLuminosityBlocks () const
 
bool wantsStreamRuns () const
 
 ~EDAnalyzerBase () 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 Attributes

edm::InputTag castorDigiCollectionTag_
 
CastorDigiStatistics castorDigiStatistics_
 
CastorHitFilter castorFilter_
 
CaloHitAnalyzer castorHitAnalyzer_
 
std::string hitReadoutName_
 
CastorSimParameterMap simParameterMap_
 

Additional Inherited Members

- Public Types inherited from edm::one::EDAnalyzerBase
typedef EDAnalyzerBase ModuleType
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::one::EDAnalyzerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- 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

Castor digis Author: Panos Katsas

Definition at line 20 of file CastorDigiAnalyzer.h.

Constructor & Destructor Documentation

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

Definition at line 6 of file CastorDigiAnalyzer.cc.

7  : hitReadoutName_("CastorHits"),
10  castorDigiStatistics_("CASTORDigi", 3, 10., 6., 0.1, 0.5, castorHitAnalyzer_),
11  castorDigiCollectionTag_(conf.getParameter<edm::InputTag>("castorDigiCollectionTag")) {}
CastorHitFilter castorFilter_
CaloHitAnalyzer castorHitAnalyzer_
CastorDigiStatistics castorDigiStatistics_
std::string hitReadoutName_
CastorSimParameterMap simParameterMap_
edm::InputTag castorDigiCollectionTag_

Member Function Documentation

void CastorDigiAnalyzer::analyze ( edm::Event const &  e,
edm::EventSetup const &  c 
)
overridevirtual

Implements edm::one::EDAnalyzerBase.

Definition at line 28 of file CastorDigiAnalyzer.cc.

References castorDigiCollectionTag_, castorDigiStatistics_, castorHitAnalyzer_, MillePedeFileConverter_cfg::e, CaloHitAnalyzer::fillHits(), edm::Event::getByLabel(), hfClusterShapes_cfi::hits, and edm::Handle< T >::product().

28  {
29  // edm::Handle<edm::PCaloHitContainer> hits;
31 
32  e.getByLabel("mix", "g4SimHitsCastorFI", castorcf);
33 
34  // access to SimHits
35  std::unique_ptr<MixCollection<PCaloHit>> hits(new MixCollection<PCaloHit>(castorcf.product()));
36  // if (hits.isValid()) {
38  CastorDigiAnalyzerImpl::analyze<CastorDigiCollection>(e, castorDigiStatistics_, castorDigiCollectionTag_);
39 }
CaloHitAnalyzer castorHitAnalyzer_
CastorDigiStatistics castorDigiStatistics_
void fillHits(MixCollection< PCaloHit > &hits)
should be called each event
edm::InputTag castorDigiCollectionTag_
T const * product() const
Definition: Handle.h:74

Member Data Documentation

edm::InputTag CastorDigiAnalyzer::castorDigiCollectionTag_
private

Definition at line 31 of file CastorDigiAnalyzer.h.

Referenced by analyze().

CastorDigiStatistics CastorDigiAnalyzer::castorDigiStatistics_
private

Definition at line 30 of file CastorDigiAnalyzer.h.

Referenced by analyze().

CastorHitFilter CastorDigiAnalyzer::castorFilter_
private

Definition at line 28 of file CastorDigiAnalyzer.h.

CaloHitAnalyzer CastorDigiAnalyzer::castorHitAnalyzer_
private

Definition at line 29 of file CastorDigiAnalyzer.h.

Referenced by analyze().

std::string CastorDigiAnalyzer::hitReadoutName_
private

Definition at line 26 of file CastorDigiAnalyzer.h.

CastorSimParameterMap CastorDigiAnalyzer::simParameterMap_
private

Definition at line 27 of file CastorDigiAnalyzer.h.