CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
cms::HitReCalibrator Class Reference

#include <HitReCalibrator.h>

Inheritance diagram for cms::HitReCalibrator:
edm::EDProducer edm::ProducerBase edm::EDConsumerBase edm::ProductRegistryHelper

Public Member Functions

void beginJob () override
 
 HitReCalibrator (const edm::ParameterSet &)
 
void produce (edm::Event &, const edm::EventSetup &) override
 
 ~HitReCalibrator () 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
 
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

bool allowMissingInputs_
 
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 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

Definition at line 37 of file HitReCalibrator.h.

Constructor & Destructor Documentation

cms::HitReCalibrator::HitReCalibrator ( const edm::ParameterSet iConfig)
explicit

Definition at line 19 of file HitReCalibrator.cc.

References edm::ParameterSet::getParameter().

19  {
20  tok_hbhe_ = consumes<HBHERecHitCollection>(iConfig.getParameter<edm::InputTag>("hbheInput"));
21  tok_ho_ = consumes<HORecHitCollection>(iConfig.getParameter<edm::InputTag>("hoInput"));
22  tok_hf_ = consumes<HFRecHitCollection>(iConfig.getParameter<edm::InputTag>("hfInput"));
23  allowMissingInputs_ = true;
24  //register your products
25 
26  produces<HBHERecHitCollection>("DiJetsHBHEReRecHitCollection");
27  produces<HORecHitCollection>("DiJetsHOReRecHitCollection");
28  produces<HFRecHitCollection>("DiJetsHFReRecHitCollection");
29  }
T getParameter(std::string const &) const
edm::EDGetTokenT< HORecHitCollection > tok_ho_
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_
cms::HitReCalibrator::~HitReCalibrator ( )
override

Definition at line 32 of file HitReCalibrator.cc.

32 {}

Member Function Documentation

void cms::HitReCalibrator::beginJob ( void  )
overridevirtual

Reimplemented from edm::EDProducer.

Definition at line 30 of file HitReCalibrator.cc.

30 {}
void cms::HitReCalibrator::produce ( edm::Event iEvent,
const edm::EventSetup iSetup 
)
override

Definition at line 35 of file HitReCalibrator.cc.

References edm::SortedCollection< T, SORT >::begin(), gather_cfg::cout, DEFINE_FWK_MODULE, MillePedeFileConverter_cfg::e, edm::SortedCollection< T, SORT >::end(), HcalCondObjectContainer< Item >::exists(), edm::EventSetup::get(), edm::Event::getByToken(), HcalRespCorr::getValue(), HcalCondObjectContainer< Item >::getValues(), photonIsolationHIProducer_cfi::hbhe, photonIsolationHIProducer_cfi::hf, photonIsolationHIProducer_cfi::ho, eostools::move(), edm::Handle< T >::product(), edm::Event::put(), and protons_cff::time.

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

35  {
36  auto miniDiJetsHBHERecHitCollection = std::make_unique<HBHERecHitCollection>();
37  auto miniDiJetsHORecHitCollection = std::make_unique<HORecHitCollection>();
38  auto miniDiJetsHFRecHitCollection = std::make_unique<HFRecHitCollection>();
39 
40  edm::ESHandle<HcalRespCorrs> recalibCorrs;
41  iSetup.get<HcalRespCorrsRcd>().get("recalibrate", recalibCorrs);
42  const HcalRespCorrs* jetRecalib = recalibCorrs.product();
43 
44  try {
46  iEvent.getByToken(tok_hbhe_, hbhe);
47  const HBHERecHitCollection Hithbhe = *(hbhe.product());
48  for (HBHERecHitCollection::const_iterator hbheItr = Hithbhe.begin(); hbheItr != Hithbhe.end(); hbheItr++) {
49  DetId id = hbheItr->detid();
50  float recal;
51  if (jetRecalib->exists(id))
52  recal = jetRecalib->getValues(id)->getValue();
53  else
54  recal = 1.;
55  float energy = hbheItr->energy();
56  float time = hbheItr->time();
57  HBHERecHit* hbhehit = new HBHERecHit(id, recal * energy, time);
58  miniDiJetsHBHERecHitCollection->push_back(*hbhehit);
59  }
60  } catch (cms::Exception& e) { // can't find it!
61  if (!allowMissingInputs_) {
62  cout << "No HBHE collection " << endl;
63  throw e;
64  }
65  }
66 
67  try {
69  iEvent.getByToken(tok_ho_, ho);
70  const HORecHitCollection Hitho = *(ho.product());
71  for (HORecHitCollection::const_iterator hoItr = Hitho.begin(); hoItr != Hitho.end(); hoItr++) {
72  DetId id = hoItr->detid();
73  float recal;
74  if (jetRecalib->exists(id))
75  recal = jetRecalib->getValues(id)->getValue();
76  else
77  recal = 1.;
78  float energy = hoItr->energy();
79  float time = hoItr->time();
80  HORecHit* hohit = new HORecHit(id, recal * energy, time);
81  miniDiJetsHORecHitCollection->push_back(*hohit);
82  }
83  } catch (cms::Exception& e) { // can't find it!
84  if (!allowMissingInputs_) {
85  cout << " No HO collection " << endl;
86  throw e;
87  }
88  }
89 
90  try {
92  iEvent.getByToken(tok_hf_, hf);
93  const HFRecHitCollection Hithf = *(hf.product());
94  for (HFRecHitCollection::const_iterator hfItr = Hithf.begin(); hfItr != Hithf.end(); hfItr++) {
95  DetId id = hfItr->detid();
96  float recal;
97  if (jetRecalib->exists(id))
98  recal = jetRecalib->getValues(id)->getValue();
99  else
100  recal = 1.;
101  float energy = hfItr->energy();
102  float time = hfItr->time();
103  HFRecHit* hfhit = new HFRecHit(id, recal * energy, time);
104  miniDiJetsHFRecHitCollection->push_back(*hfhit);
105  }
106  } catch (cms::Exception& e) { // can't find it!
107  if (!allowMissingInputs_)
108  throw e;
109  }
110 
111  //Put selected information in the event
112 
113  iEvent.put(std::move(miniDiJetsHBHERecHitCollection), "DiJetsHBHEReRecHitCollection");
114 
115  iEvent.put(std::move(miniDiJetsHORecHitCollection), "DiJetsHOReRecHitCollection");
116 
117  iEvent.put(std::move(miniDiJetsHFRecHitCollection), "DiJetsHFReRecHitCollection");
118  }
OrphanHandle< PROD > put(std::unique_ptr< PROD > product)
Put a new product.
Definition: Event.h:125
bool getByToken(EDGetToken token, Handle< PROD > &result) const
Definition: Event.h:517
std::vector< T >::const_iterator const_iterator
const Item * getValues(DetId fId, bool throwOnFail=true) const
edm::EDGetTokenT< HORecHitCollection > tok_ho_
const bool exists(DetId fId) const
const_iterator end() const
edm::EDGetTokenT< HFRecHitCollection > tok_hf_
Definition: DetId.h:18
T const * product() const
Definition: Handle.h:74
float getValue() const
Definition: HcalRespCorr.h:20
T get() const
Definition: EventSetup.h:71
def move(src, dest)
Definition: eostools.py:511
const_iterator begin() const
edm::EDGetTokenT< HBHERecHitCollection > tok_hbhe_

Member Data Documentation

bool cms::HitReCalibrator::allowMissingInputs_
private

Definition at line 49 of file HitReCalibrator.h.

edm::EDGetTokenT<HBHERecHitCollection> cms::HitReCalibrator::tok_hbhe_
private

Definition at line 51 of file HitReCalibrator.h.

edm::EDGetTokenT<HFRecHitCollection> cms::HitReCalibrator::tok_hf_
private

Definition at line 53 of file HitReCalibrator.h.

edm::EDGetTokenT<HORecHitCollection> cms::HitReCalibrator::tok_ho_
private

Definition at line 52 of file HitReCalibrator.h.