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 Member Functions | Private Attributes
reco::HcalHaloDataProducer Class Reference

#include <HcalHaloDataProducer.h>

Inheritance diagram for reco::HcalHaloDataProducer:
edm::stream::EDProducer<> edm::stream::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 HcalHaloDataProducer (const edm::ParameterSet &)
 
 ~HcalHaloDataProducer ()
 
- Public Member Functions inherited from edm::stream::EDProducer<>
 EDProducer ()=default
 
- Public Member Functions inherited from edm::stream::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
virtual ~EDProducerBase ()
 
- Public Member Functions inherited from edm::ProducerBase
 ProducerBase ()
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription
const &)> 
registrationCallback () const
 used by the fwk to register list of products More...
 
virtual ~ProducerBase ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 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
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void produce (edm::Event &, const edm::EventSetup &) override
 

Private Attributes

edm::EDGetTokenT
< HBHERecHitCollection
hbherechit_token_
 
float HBRecHitEnergyThreshold
 
float HERecHitEnergyThreshold
 
edm::EDGetTokenT
< HFRecHitCollection
hfrechit_token_
 
edm::InputTag IT_HBHERecHit
 
edm::InputTag IT_HFRecHit
 
edm::InputTag IT_HORecHit
 
int NHitsHcalThreshold
 
float SumHcalEnergyThreshold
 

Additional Inherited Members

- Public Types inherited from edm::stream::EDProducer<>
typedef CacheContexts< T...> CacheTypes
 
typedef CacheTypes::GlobalCache GlobalCache
 
typedef AbilityChecker< T...> HasAbility
 
typedef
CacheTypes::LuminosityBlockCache 
LuminosityBlockCache
 
typedef
LuminosityBlockContextT
< LuminosityBlockCache,
RunCache, GlobalCache
LuminosityBlockContext
 
typedef
CacheTypes::LuminosityBlockSummaryCache 
LuminosityBlockSummaryCache
 
typedef CacheTypes::RunCache RunCache
 
typedef RunContextT< RunCache,
GlobalCache
RunContext
 
typedef CacheTypes::RunSummaryCache RunSummaryCache
 
- Public Types inherited from edm::stream::EDProducerBase
typedef EDProducerAdaptorBase ModuleType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::stream::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
- 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

Definition at line 86 of file HcalHaloDataProducer.h.

Constructor & Destructor Documentation

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

Definition at line 15 of file HcalHaloDataProducer.cc.

References edm::ParameterSet::getParameter().

16 {
17  //RecHit Level
18  IT_HBHERecHit = iConfig.getParameter<edm::InputTag>("HBHERecHitLabel");
19  IT_HFRecHit = iConfig.getParameter<edm::InputTag>("HFRecHitLabel");
20  IT_HORecHit = iConfig.getParameter<edm::InputTag>("HORecHitLabel");
21 
22  HBRecHitEnergyThreshold = (float)iConfig.getParameter<double>("HBRecHitEnergyThresholdParam");
23  HERecHitEnergyThreshold = (float)iConfig.getParameter<double>("HERecHitEnergyThresholdParam");
24  SumHcalEnergyThreshold = (float) iConfig.getParameter<double>("SumHcalEnergyThresholdParam");
25  NHitsHcalThreshold = iConfig.getParameter<int>("NHitsHcalThresholdParam");
26 
27  hbherechit_token_ = consumes<HBHERecHitCollection>(IT_HBHERecHit);
28  hfrechit_token_ = consumes<HFRecHitCollection>(IT_HFRecHit);
29 
30  produces<HcalHaloData>();
31 }
T getParameter(std::string const &) const
edm::EDGetTokenT< HBHERecHitCollection > hbherechit_token_
edm::EDGetTokenT< HFRecHitCollection > hfrechit_token_
HcalHaloDataProducer::~HcalHaloDataProducer ( )

Definition at line 68 of file HcalHaloDataProducer.cc.

68 {}

Member Function Documentation

void HcalHaloDataProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
overrideprivatevirtual

Implements edm::stream::EDProducerBase.

Definition at line 33 of file HcalHaloDataProducer.cc.

References HcalHaloAlgo::Calculate(), edm::EventSetup::get(), edm::Event::getByToken(), HcalHaloData_cfi::HcalHaloData, edm::ESHandleBase::isValid(), edm::HandleBase::isValid(), edm::Event::put(), HcalHaloAlgo::SetPhiWedgeThresholds(), and HcalHaloAlgo::SetRecHitEnergyThresholds().

34 {
35  //Get CaloGeometry
36  edm::ESHandle<CaloGeometry> TheCaloGeometry;
37  iSetup.get<CaloGeometryRecord>().get(TheCaloGeometry);
38 
39  //Get HB/HE RecHits
40  edm::Handle<HBHERecHitCollection> TheHBHERecHits;
41  // iEvent.getByLabel(IT_HBHERecHit, TheHBHERecHits);
42  iEvent.getByToken(hbherechit_token_, TheHBHERecHits);
43 
44  //Get HF RecHits
46  // iEvent.getByLabel(IT_HFRecHit, TheHFRecHits);
47  iEvent.getByToken(hfrechit_token_, TheHFRecHits);
48 
49  // Run the HcalHaloAlgo to reconstruct the HcalHaloData object
50  HcalHaloAlgo HcalAlgo;
53 
54  HcalHaloData HcalData;
55  if( TheCaloGeometry.isValid() && TheHBHERecHits.isValid() )
56  {
57  std::auto_ptr<HcalHaloData> HcalData( new HcalHaloData( HcalAlgo.Calculate(*TheCaloGeometry, TheHBHERecHits) ) ) ;
58  iEvent.put ( HcalData ) ;
59  }
60  else
61  {
62  std::auto_ptr<HcalHaloData> HcalData( new HcalHaloData() ) ;
63  iEvent.put( HcalData ) ;
64  }
65  return;
66 }
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:434
void SetRecHitEnergyThresholds(float HB, float HE)
Definition: HcalHaloAlgo.h:38
edm::EDGetTokenT< HBHERecHitCollection > hbherechit_token_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:116
reco::HcalHaloData Calculate(const CaloGeometry &TheCaloGeometry, edm::Handle< HBHERecHitCollection > &TheHBHERecHits)
Definition: HcalHaloAlgo.cc:25
bool isValid() const
Definition: HandleBase.h:76
void SetPhiWedgeThresholds(float SumE, int nhits)
Definition: HcalHaloAlgo.h:43
const T & get() const
Definition: EventSetup.h:55
edm::EDGetTokenT< HFRecHitCollection > hfrechit_token_
bool isValid() const
Definition: ESHandle.h:37

Member Data Documentation

edm::EDGetTokenT<HBHERecHitCollection> reco::HcalHaloDataProducer::hbherechit_token_
private

Definition at line 101 of file HcalHaloDataProducer.h.

float reco::HcalHaloDataProducer::HBRecHitEnergyThreshold
private

Definition at line 104 of file HcalHaloDataProducer.h.

float reco::HcalHaloDataProducer::HERecHitEnergyThreshold
private

Definition at line 105 of file HcalHaloDataProducer.h.

edm::EDGetTokenT<HFRecHitCollection> reco::HcalHaloDataProducer::hfrechit_token_
private

Definition at line 102 of file HcalHaloDataProducer.h.

edm::InputTag reco::HcalHaloDataProducer::IT_HBHERecHit
private

Definition at line 97 of file HcalHaloDataProducer.h.

edm::InputTag reco::HcalHaloDataProducer::IT_HFRecHit
private

Definition at line 99 of file HcalHaloDataProducer.h.

edm::InputTag reco::HcalHaloDataProducer::IT_HORecHit
private

Definition at line 98 of file HcalHaloDataProducer.h.

int reco::HcalHaloDataProducer::NHitsHcalThreshold
private

Definition at line 107 of file HcalHaloDataProducer.h.

float reco::HcalHaloDataProducer::SumHcalEnergyThreshold
private

Definition at line 106 of file HcalHaloDataProducer.h.