CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Member Functions | Private Member Functions | Private Attributes
HGCDigiConverter Class Reference
Inheritance diagram for HGCDigiConverter:
edm::global::EDProducer<> edm::global::EDProducerBase edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

 HGCDigiConverter (const edm::ParameterSet &)
 
- Public Member Functions inherited from edm::global::EDProducer<>
 EDProducer ()=default
 
bool hasAbilityToProduceInLumis () const final
 
bool hasAbilityToProduceInRuns () const final
 
bool wantsGlobalLuminosityBlocks () const final
 
bool wantsGlobalRuns () const final
 
bool wantsStreamLuminosityBlocks () const final
 
bool wantsStreamRuns () const final
 
- Public Member Functions inherited from edm::global::EDProducerBase
 EDProducerBase ()
 
ModuleDescription const & moduleDescription () const
 
 ~EDProducerBase () 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)
 

Static Public Member Functions

static void fillDescriptions (edm::ConfigurationDescriptions &descriptions)
 
- Static Public Member Functions inherited from edm::global::EDProducerBase
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 

Private Member Functions

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

Private Attributes

edm::EDGetTokenT< HGCBHDigiCollectiontok_bh_
 
edm::EDGetTokenT< HGCEEDigiCollectiontok_ee_
 
edm::EDGetTokenT< HGCHEDigiCollectiontok_fh_
 

Additional Inherited Members

- Public Types inherited from edm::global::EDProducerBase
typedef EDProducerBase 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
 
- 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 16 of file HGCDigiConverter.cc.

Constructor & Destructor Documentation

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

Definition at line 27 of file HGCDigiConverter.cc.

27  :
28  tok_ee_(consumes<HGCEEDigiCollection>(iConfig.getParameter<edm::InputTag>("eeDigis"))),
29  tok_fh_(consumes<HGCHEDigiCollection>(iConfig.getParameter<edm::InputTag>("fhDigis"))),
30  tok_bh_(consumes<HGCBHDigiCollection>(iConfig.getParameter<edm::InputTag>("bhDigis")))
31 {
32  produces<HGCalDigiCollection>("EE");
33  produces<HGCalDigiCollection>("HEfront");
34  produces<HGCalDigiCollection>("HEback");
35 }
edm::EDGetTokenT< HGCBHDigiCollection > tok_bh_
T getParameter(std::string const &) const
edm::EDGetTokenT< HGCHEDigiCollection > tok_fh_
edm::EDGetTokenT< HGCEEDigiCollection > tok_ee_

Member Function Documentation

void HGCDigiConverter::fillDescriptions ( edm::ConfigurationDescriptions descriptions)
static

Definition at line 77 of file HGCDigiConverter.cc.

References edm::ConfigurationDescriptions::add(), edm::ParameterSetDescription::add(), and DEFINE_FWK_MODULE.

77  {
79  desc.add<edm::InputTag>("eeDigis",edm::InputTag("mix:HGCDigisEE"));
80  desc.add<edm::InputTag>("fhDigis",edm::InputTag("mix:HGCDigisHEfront"));
81  desc.add<edm::InputTag>("bhDigis",edm::InputTag("mix:HGCDigisHEback"));
82 
83  descriptions.add("HGCDigiConverter",desc);
84 }
ParameterDescriptionBase * add(U const &iLabel, T const &value)
void add(std::string const &label, ParameterSetDescription const &psetDescription)
void HGCDigiConverter::produce ( edm::StreamID  ,
edm::Event iEvent,
const edm::EventSetup iSetup 
) const
overrideprivate

Definition at line 37 of file HGCDigiConverter.cc.

References edm::Event::getByToken(), edm::HandleBase::isValid(), eostools::move(), edm::Event::put(), tmp, tok_bh_, tok_ee_, and tok_fh_.

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

37  {
41 
42  iEvent.getByToken(tok_ee_,h_ee);
43  iEvent.getByToken(tok_fh_,h_fh);
44  iEvent.getByToken(tok_bh_,h_bh);
45 
46  auto out_ee = std::make_unique<HGCalDigiCollection>();
47  if(h_ee.isValid()){
48  for(const auto& df_ee : *h_ee){
49  HGCalDataFrame tmp(df_ee.id());
50  tmp.setData(df_ee.data());
51  out_ee->push_back(tmp);
52  }
53  }
54  iEvent.put(std::move(out_ee),"EE");
55 
56  auto out_fh = std::make_unique<HGCalDigiCollection>();
57  if(h_fh.isValid()){
58  for(const auto& df_fh : *h_fh){
59  HGCalDataFrame tmp(df_fh.id());
60  tmp.setData(df_fh.data());
61  out_fh->emplace_back(tmp);
62  }
63  }
64  iEvent.put(std::move(out_fh),"HEfront");
65 
66  auto out_bh = std::make_unique<HGCalDigiCollection>();
67  if(h_bh.isValid()){
68  for(const auto& df_bh : *h_bh){
69  HGCalDataFrame tmp(df_bh.id());
70  tmp.setData(df_bh.data());
71  out_bh->emplace_back(tmp);
72  }
73  }
74  iEvent.put(std::move(out_bh),"HEback");
75 }
edm::EDGetTokenT< HGCBHDigiCollection > tok_bh_
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
edm::EDGetTokenT< HGCHEDigiCollection > tok_fh_
bool isValid() const
Definition: HandleBase.h:74
std::vector< std::vector< double > > tmp
Definition: MVATrainer.cc:100
edm::EDGetTokenT< HGCEEDigiCollection > tok_ee_
def move(src, dest)
Definition: eostools.py:510

Member Data Documentation

edm::EDGetTokenT<HGCBHDigiCollection> HGCDigiConverter::tok_bh_
private

Definition at line 24 of file HGCDigiConverter.cc.

Referenced by produce().

edm::EDGetTokenT<HGCEEDigiCollection> HGCDigiConverter::tok_ee_
private

Definition at line 22 of file HGCDigiConverter.cc.

Referenced by produce().

edm::EDGetTokenT<HGCHEDigiCollection> HGCDigiConverter::tok_fh_
private

Definition at line 23 of file HGCDigiConverter.cc.

Referenced by produce().