CMS 3D CMS Logo

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

#include <AlCaEcalHcalReadoutsProducer.h>

Inheritance diagram for AlCaEcalHcalReadoutsProducer:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 AlCaEcalHcalReadoutsProducer (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~AlCaEcalHcalReadoutsProducer () override
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
SerialTaskQueueglobalLuminosityBlocksQueue ()
 
SerialTaskQueueglobalRunsQueue ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducer () override
 
- Public Member Functions inherited from edm::ProducerBase
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
std::vector< edm::ProductResolverIndex > const & indiciesForPutProducts (BranchType iBranchType) const
 
 ProducerBase ()
 
std::vector< edm::ProductResolverIndex > const & putTokenIndexToProductResolverIndex () const
 
void registerProducts (ProducerBase *, ProductRegistry *, ModuleDescription const &)
 
std::function< void(BranchDescription const &)> registrationCallback () const
 used by the fwk to register list of products More...
 
void resolvePutIndicies (BranchType iBranchType, ModuleToResolverIndicies const &iIndicies, std::string const &moduleLabel)
 
 ~ProducerBase () noexcept(false) 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
 
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)
 
virtual ~EDConsumerBase () noexcept(false)
 

Private Attributes

edm::EDGetTokenT< HBHERecHitCollectiontok_hbhe_
 
edm::EDGetTokenT< HFRecHitCollectiontok_hf_
 
edm::EDGetTokenT< HORecHitCollectiontok_ho_
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
- Public Types inherited from edm::ProducerBase
using ModuleToResolverIndicies = std::unordered_multimap< std::string, std::tuple< edm::TypeID const *, const char *, edm::ProductResolverIndex >>
 
typedef ProductRegistryHelper::TypeLabelList TypeLabelList
 
- Public Types inherited from edm::EDConsumerBase
typedef ProductLabels Labels
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
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 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 37 of file AlCaEcalHcalReadoutsProducer.h.

Constructor & Destructor Documentation

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

Definition at line 5 of file AlCaEcalHcalReadoutsProducer.cc.

References edm::ParameterSet::getParameter(), tok_hbhe_, tok_hf_, and tok_ho_.

6 {
7 
8  tok_ho_ = consumes<HORecHitCollection>(iConfig.getParameter<edm::InputTag>("hoInput"));
9  tok_hf_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInput"));
10  tok_hbhe_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInput"));
11 
12  //register your products
13  produces<HBHERecHitCollection>("HBHERecHitCollection");
14  produces<HORecHitCollection>("HORecHitCollection");
15  produces<HFRecHitCollection>("HFRecHitCollection");
16 }
T getParameter(std::string const &) const
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
edm::EDGetTokenT< HORecHitCollection > tok_ho_
AlCaEcalHcalReadoutsProducer::~AlCaEcalHcalReadoutsProducer ( )
override

Definition at line 19 of file AlCaEcalHcalReadoutsProducer.cc.

20 {
21 
22 
23 }

Member Function Documentation

void AlCaEcalHcalReadoutsProducer::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 28 of file AlCaEcalHcalReadoutsProducer.cc.

References edm::SortedCollection< T, SORT >::begin(), edm::SortedCollection< T, SORT >::end(), edm::Event::getByToken(), photonIsolationHIProducer_cfi::hbhe, photonIsolationHIProducer_cfi::hf, photonIsolationHIProducer_cfi::ho, edm::HandleBase::isValid(), LogDebug, eostools::move(), edm::Handle< T >::product(), edm::SortedCollection< T, SORT >::push_back(), edm::Event::put(), mathSSE::return(), tok_hbhe_, tok_hf_, and tok_ho_.

Referenced by JSONExport.JsonExport::export(), HTMLExport.HTMLExport::export(), and HTMLExport.HTMLExportStatic::export().

29 {
30  using namespace edm;
31  using namespace std;
32 
36 
37  iEvent.getByToken(tok_hbhe_,hbhe);
38  if(!hbhe.isValid()){
39  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get hbhe product!" << std::endl;
40  return ;
41  }
42 
43  iEvent.getByToken(tok_ho_,ho);
44  if(!ho.isValid()) {
45  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get ho product!" << std::endl;
46  }
47 
48  iEvent.getByToken(tok_hf_,hf);
49  if(!hf.isValid()) {
50  LogDebug("") << "AlCaEcalHcalReadoutProducer: Error! can't get hf product!" << std::endl;
51  }
52  //Create empty output collections
53 
54  auto miniHBHERecHitCollection = std::make_unique<HBHERecHitCollection>();
55  auto miniHORecHitCollection = std::make_unique<HORecHitCollection>();
56  auto miniHFRecHitCollection = std::make_unique<HFRecHitCollection>();
57 
58  const HBHERecHitCollection Hithbhe = *(hbhe.product());
59  for(HBHERecHitCollection::const_iterator hbheItr=Hithbhe.begin(); hbheItr!=Hithbhe.end(); hbheItr++)
60  {
61  miniHBHERecHitCollection->push_back(*hbheItr);
62  }
63  const HORecHitCollection Hitho = *(ho.product());
64  for(HORecHitCollection::const_iterator hoItr=Hitho.begin(); hoItr!=Hitho.end(); hoItr++)
65  {
66  miniHORecHitCollection->push_back(*hoItr);
67  }
68 
69  const HFRecHitCollection Hithf = *(hf.product());
70  for(HFRecHitCollection::const_iterator hfItr=Hithf.begin(); hfItr!=Hithf.end(); hfItr++)
71  {
72  miniHFRecHitCollection->push_back(*hfItr);
73  }
74 
75 
76 
77  //Put selected information in the event
78  iEvent.put(std::move(miniHBHERecHitCollection), "HBHERecHitCollection");
79  iEvent.put(std::move(miniHORecHitCollection), "HORecHitCollection");
80  iEvent.put(std::move(miniHFRecHitCollection), "HFRecHitCollection");
81 
82 
83 }
#define LogDebug(id)
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:137
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:579
std::vector< HBHERecHit >::const_iterator const_iterator
void push_back(T const &t)
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
return((rh^lh)&mask)
bool isValid() const
Definition: HandleBase.h:74
const_iterator end() const
T const * product() const
Definition: Handle.h:81
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
edm::EDGetTokenT< HORecHitCollection > tok_ho_
HLT enums.
def move(src, dest)
Definition: eostools.py:510
const_iterator begin() const

Member Data Documentation

edm::EDGetTokenT<HBHERecHitCollection> AlCaEcalHcalReadoutsProducer::tok_hbhe_
private

Definition at line 47 of file AlCaEcalHcalReadoutsProducer.h.

Referenced by AlCaEcalHcalReadoutsProducer(), and produce().

edm::EDGetTokenT<HFRecHitCollection> AlCaEcalHcalReadoutsProducer::tok_hf_
private

Definition at line 49 of file AlCaEcalHcalReadoutsProducer.h.

Referenced by AlCaEcalHcalReadoutsProducer(), and produce().

edm::EDGetTokenT<HORecHitCollection> AlCaEcalHcalReadoutsProducer::tok_ho_
private

Definition at line 48 of file AlCaEcalHcalReadoutsProducer.h.

Referenced by AlCaEcalHcalReadoutsProducer(), and produce().