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 Attributes
ZdcHitReconstructor Class Reference

#include <ZdcHitReconstructor.h>

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

Public Member Functions

virtual void beginRun (edm::Run const &r, edm::EventSetup const &es) overridefinal
 
virtual void endRun (edm::Run const &r, edm::EventSetup const &es) overridefinal
 
virtual void produce (edm::Event &e, const edm::EventSetup &c) overridefinal
 
 ZdcHitReconstructor (const edm::ParameterSet &ps)
 
virtual ~ZdcHitReconstructor ()
 
- Public Member Functions inherited from edm::EDProducer
 EDProducer ()
 
virtual ~EDProducer ()
 
- 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 ()
 
ProductHolderIndex indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndex > &) const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Attributes

std::vector< int > AuxTSvec_
 
bool correctTiming_
 
DetId::Detector det_
 
bool dropZSmarkedPassed_
 
HBHEStatusBitSetterhbheFlagSetter_
 
HBHETimeProfileStatusBitSetterhbheHSCPFlagSetter_
 
HBHETimingShapedFlagSetterhbheTimingShapedFlagSetter_
 
HcalHFStatusBitFromDigishfdigibit_
 
HcalHFStatusBitFromRecHitshfrechitbit_
 
HFTimingTrustFlagHFTimingTrustFlagSetter_
 
edm::InputTag inputLabel_
 
double lowGainFrac_
 
int lowGainOffset_
 
HcalLongRecoParamsmyobject
 
ZdcSimpleRecAlgo reco_
 
HcalADCSaturationFlagsaturationFlagSetter_
 
bool setHSCPFlags_
 
bool setNoiseFlags_
 
bool setSaturationFlags_
 
bool setTimingTrustFlags_
 
int subdet_
 
HcalOtherSubdetector subdetOther_
 
HcalTopologytheTopology
 

Additional Inherited Members

- Public Types inherited from edm::EDProducer
typedef EDProducer ModuleType
 
typedef WorkerT< EDProducerWorkerType
 
- Public Types inherited from edm::ProducerBase
typedef
ProductRegistryHelper::TypeLabelList 
TypeLabelList
 
- Static Public Member Functions inherited from edm::EDProducer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &descriptions)
 
- Protected Member Functions inherited from edm::EDProducer
CurrentProcessingContext const * currentContext () const
 
- 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

Date:
2013/02/28 08:28:56
Revision:
1.7
Author
E. Garcia - CSU Based on HcalSimpleReconstructor.h by J. Mans

Definition at line 35 of file ZdcHitReconstructor.h.

Constructor & Destructor Documentation

ZdcHitReconstructor::ZdcHitReconstructor ( const edm::ParameterSet ps)
explicit

Definition at line 20 of file ZdcHitReconstructor.cc.

References AuxTSvec_, DetId::Calo, gather_cfg::cout, det_, edm::ParameterSet::getParameter(), HcalCalibration, HcalOther, saturationFlagSetter_, setSaturationFlags_, python.multivaluedict::sort(), AlCaHLTBitMon_QueryRunRegistry::string, subdet_, HcalZDCDetId::SubdetectorId, and subdetOther_.

20  :
21  reco_(conf.getParameter<bool>("correctForTimeslew"),
22  conf.getParameter<bool>("correctForPhaseContainment"),
23  conf.getParameter<double>("correctionPhaseNS"),
24  conf.getParameter<int>("recoMethod"),
25  conf.getParameter<int>("lowGainOffset"),
26  conf.getParameter<double>("lowGainFrac")),
28  inputLabel_(conf.getParameter<edm::InputTag>("digiLabel")),
29  correctTiming_(conf.getParameter<bool>("correctTiming")),
30  setNoiseFlags_(conf.getParameter<bool>("setNoiseFlags")),
31  setHSCPFlags_(conf.getParameter<bool>("setHSCPFlags")),
32  setSaturationFlags_(conf.getParameter<bool>("setSaturationFlags")),
33  setTimingTrustFlags_(conf.getParameter<bool>("setTimingTrustFlags")),
34  dropZSmarkedPassed_(conf.getParameter<bool>("dropZSmarkedPassed")),
35  AuxTSvec_(conf.getParameter<std::vector<int> >("AuxTSvec")),
36  myobject(0),
37  theTopology(0)
38 
39 {
40  std::sort(AuxTSvec_.begin(),AuxTSvec_.end()); // sort vector in ascending TS order
41  std::string subd=conf.getParameter<std::string>("Subdetector");
42 
44  {
45  const edm::ParameterSet& pssat = conf.getParameter<edm::ParameterSet>("saturationParameters");
46  saturationFlagSetter_ = new HcalADCSaturationFlag(pssat.getParameter<int>("maxADCvalue"));
47  }
48  if (!strcasecmp(subd.c_str(),"ZDC")) {
51  produces<ZDCRecHitCollection>();
52  } else if (!strcasecmp(subd.c_str(),"CALIB")) {
55  produces<HcalCalibRecHitCollection>();
56  } else {
57  std::cout << "ZdcHitReconstructor is not associated with a specific subdetector!" << std::endl;
58  }
59 
60 }
T getParameter(std::string const &) const
HcalTopology * theTopology
ZdcSimpleRecAlgo reco_
HcalOtherSubdetector subdetOther_
HcalLongRecoParams * myobject
HcalADCSaturationFlag * saturationFlagSetter_
tuple conf
Definition: dbtoconf.py:185
static const int SubdetectorId
Definition: HcalZDCDetId.h:22
std::vector< int > AuxTSvec_
tuple cout
Definition: gather_cfg.py:121
ZdcHitReconstructor::~ZdcHitReconstructor ( )
virtual

Definition at line 62 of file ZdcHitReconstructor.cc.

62  {;
63 }

Member Function Documentation

void ZdcHitReconstructor::beginRun ( edm::Run const &  r,
edm::EventSetup const &  es 
)
finaloverridevirtual
void ZdcHitReconstructor::endRun ( edm::Run const &  r,
edm::EventSetup const &  es 
)
finaloverridevirtual

Reimplemented from edm::EDProducer.

Definition at line 77 of file ZdcHitReconstructor.cc.

References myobject, and theTopology.

77  {
78  delete myobject; myobject=0;
79  delete theTopology; theTopology=0;
80 }
HcalTopology * theTopology
HcalLongRecoParams * myobject
void ZdcHitReconstructor::produce ( edm::Event e,
const edm::EventSetup c 
)
finaloverridevirtual

Implements edm::EDProducer.

Definition at line 81 of file ZdcHitReconstructor.cc.

References AuxTSvec_, DetId::Calo, det_, HcalSeverityLevelComputer::dropChannel(), dropZSmarkedPassed_, edm::EventSetup::get(), edm::Event::getByLabel(), HcalChannelStatus::getValue(), HcalCondObjectContainer< Item >::getValues(), i, inputLabel_, myobject, HcalLongRecoParam::noiseTS(), AlCaHLTBitMon_ParallelJobs::p, edm::ESHandle< class >::product(), edm::Event::put(), DetId::rawId(), reco_, ZdcSimpleRecAlgo::reconstruct(), saturationFlagSetter_, HcalADCSaturationFlag::setSaturationFlag(), setSaturationFlags_, HcalLongRecoParam::signalTS(), subdet_, and HcalZDCDetId::SubdetectorId.

82 {
83  // get conditions
85  eventSetup.get<HcalDbRecord>().get(conditions);
86 
88  eventSetup.get<HcalChannelQualityRcd>().get(p);
89  HcalChannelQuality* myqual = new HcalChannelQuality(*p.product());
90 
92  eventSetup.get<HcalSeverityLevelComputerRcd>().get(mycomputer);
93  const HcalSeverityLevelComputer* mySeverity = mycomputer.product();
94 
95  // define vectors to pass noiseTS and signalTS
96  std::vector<unsigned int> mySignalTS;
97  std::vector<unsigned int> myNoiseTS;
98 
101  e.getByLabel(inputLabel_,digi);
102 
103  // create empty output
104  std::auto_ptr<ZDCRecHitCollection> rec(new ZDCRecHitCollection);
105  rec->reserve(digi->size());
106  // run the algorithm
108  for (i=digi->begin(); i!=digi->end(); i++) {
109  HcalZDCDetId cell = i->id();
110  DetId detcell=(DetId)cell;
111  // check on cells to be ignored and dropped: (rof,20.Feb.09)
112  const HcalChannelStatus* mydigistatus=myqual->getValues(detcell.rawId());
113  if (mySeverity->dropChannel(mydigistatus->getValue() ) ) continue;
115  if (i->zsMarkAndPass()) continue;
116  const HcalCalibrations& calibrations=conditions->getHcalCalibrations(cell);
117  const HcalQIECoder* channelCoder = conditions->getHcalCoder (cell);
118  const HcalQIEShape* shape = conditions->getHcalShape (channelCoder);
119  HcalCoderDb coder (*channelCoder, *shape);
120 
121 // get db values for signalTSs and noiseTSs
122  const HcalLongRecoParam* myParams = myobject->getValues(detcell);
123  mySignalTS.clear();
124  myNoiseTS.clear();
125  mySignalTS = myParams->signalTS();
126  myNoiseTS = myParams->noiseTS();
127 
128  rec->push_back(reco_.reconstruct(*i,myNoiseTS,mySignalTS,coder,calibrations));
129  (rec->back()).setFlags(0);
131  saturationFlagSetter_->setSaturationFlag(rec->back(),*i);
132 
133  // Set auxiliary flag with subset of digi information
134  // ZDC aux flag can store non-contiguous set of values
135  int auxflag=0;
136  for (unsigned int xx=0; xx<AuxTSvec_.size() && xx<4;++xx)
137  {
138  if (AuxTSvec_[xx]<0 || AuxTSvec_[xx]>9) continue; // don't allow
139  auxflag+=(i->sample(AuxTSvec_[xx]).adc())<<(7*xx); // store the time slices in the first 28 bits of aux, a set of 4 7-bit a dc values
140  }
141  // bits 28 and 29 are reserved for capid of the first time slice saved in aux
142  if (AuxTSvec_.size()>0)
143  auxflag+=((i->sample(AuxTSvec_[0]).capid())<<28);
144  (rec->back()).setAux(auxflag);
145  }
146  // return result
147  e.put(rec);
148  } // else if (det_==DetId::Calo...)
149 
150  delete myqual;
151 } // void HcalHitReconstructor::produce(...)
int i
Definition: DBlmapReader.cc:9
std::vector< unsigned int > signalTS() const
std::vector< T >::const_iterator const_iterator
const Item * getValues(DetId fId, bool throwOnFail=true) const
uint32_t rawId() const
get the raw id
Definition: DetId.h:45
ZDCRecHit reconstruct(const ZDCDataFrame &digi, const std::vector< unsigned int > &myNoiseTS, const std::vector< unsigned int > &mySignalTS, const HcalCoder &coder, const HcalCalibrations &calibs) const
ZdcSimpleRecAlgo reco_
OrphanHandle< PROD > put(std::auto_ptr< PROD > product)
Put a new product.
Definition: Event.h:94
HcalLongRecoParams * myobject
bool dropChannel(const uint32_t &mystatus) const
void setSaturationFlag(HBHERecHit &rechit, const HBHEDataFrame &digi)
HcalADCSaturationFlag * saturationFlagSetter_
bool getByLabel(InputTag const &tag, Handle< PROD > &result) const
Definition: Event.h:361
Definition: DetId.h:20
static const int SubdetectorId
Definition: HcalZDCDetId.h:22
T const * product() const
Definition: ESHandle.h:62
std::vector< int > AuxTSvec_
std::vector< unsigned int > noiseTS() const
uint32_t getValue() const

Member Data Documentation

std::vector<int> ZdcHitReconstructor::AuxTSvec_
private

Definition at line 64 of file ZdcHitReconstructor.h.

Referenced by produce(), and ZdcHitReconstructor().

bool ZdcHitReconstructor::correctTiming_
private

Definition at line 57 of file ZdcHitReconstructor.h.

DetId::Detector ZdcHitReconstructor::det_
private

Definition at line 52 of file ZdcHitReconstructor.h.

Referenced by produce(), and ZdcHitReconstructor().

bool ZdcHitReconstructor::dropZSmarkedPassed_
private

Definition at line 63 of file ZdcHitReconstructor.h.

Referenced by produce().

HBHEStatusBitSetter* ZdcHitReconstructor::hbheFlagSetter_
private

Definition at line 46 of file ZdcHitReconstructor.h.

HBHETimeProfileStatusBitSetter* ZdcHitReconstructor::hbheHSCPFlagSetter_
private

Definition at line 47 of file ZdcHitReconstructor.h.

HBHETimingShapedFlagSetter* ZdcHitReconstructor::hbheTimingShapedFlagSetter_
private

Definition at line 48 of file ZdcHitReconstructor.h.

HcalHFStatusBitFromDigis* ZdcHitReconstructor::hfdigibit_
private

Definition at line 50 of file ZdcHitReconstructor.h.

HcalHFStatusBitFromRecHits* ZdcHitReconstructor::hfrechitbit_
private

Definition at line 49 of file ZdcHitReconstructor.h.

HFTimingTrustFlag* ZdcHitReconstructor::HFTimingTrustFlagSetter_
private

Definition at line 45 of file ZdcHitReconstructor.h.

edm::InputTag ZdcHitReconstructor::inputLabel_
private

Definition at line 55 of file ZdcHitReconstructor.h.

Referenced by produce().

double ZdcHitReconstructor::lowGainFrac_
private

Definition at line 67 of file ZdcHitReconstructor.h.

int ZdcHitReconstructor::lowGainOffset_
private

Definition at line 66 of file ZdcHitReconstructor.h.

HcalLongRecoParams* ZdcHitReconstructor::myobject
private

Definition at line 69 of file ZdcHitReconstructor.h.

Referenced by beginRun(), endRun(), and produce().

ZdcSimpleRecAlgo ZdcHitReconstructor::reco_
private

Definition at line 43 of file ZdcHitReconstructor.h.

Referenced by produce().

HcalADCSaturationFlag* ZdcHitReconstructor::saturationFlagSetter_
private

Definition at line 44 of file ZdcHitReconstructor.h.

Referenced by produce(), and ZdcHitReconstructor().

bool ZdcHitReconstructor::setHSCPFlags_
private

Definition at line 59 of file ZdcHitReconstructor.h.

bool ZdcHitReconstructor::setNoiseFlags_
private

Definition at line 58 of file ZdcHitReconstructor.h.

bool ZdcHitReconstructor::setSaturationFlags_
private

Definition at line 60 of file ZdcHitReconstructor.h.

Referenced by produce(), and ZdcHitReconstructor().

bool ZdcHitReconstructor::setTimingTrustFlags_
private

Definition at line 61 of file ZdcHitReconstructor.h.

int ZdcHitReconstructor::subdet_
private

Definition at line 53 of file ZdcHitReconstructor.h.

Referenced by produce(), and ZdcHitReconstructor().

HcalOtherSubdetector ZdcHitReconstructor::subdetOther_
private

Definition at line 54 of file ZdcHitReconstructor.h.

Referenced by ZdcHitReconstructor().

HcalTopology* ZdcHitReconstructor::theTopology
private

Definition at line 70 of file ZdcHitReconstructor.h.

Referenced by beginRun(), and endRun().