CMS 3D CMS Logo

HcalTPGCoderULUT.cc
Go to the documentation of this file.
1 // -*- C++ -*-
2 //
3 // Package: HcalTPGCoderULUT
4 // Class: HcalTPGCoderULUT
5 //
13 //
14 // Original Author: Jeremiah Mans
15 // Created: Fri Sep 15 11:49:44 CDT 2006
16 //
17 //
18 
19 // system include files
20 #include <memory>
21 #include <string>
22 
23 // user include files
24 
30 
36 
37 //
38 // class decleration
39 //
40 
42 public:
44  ~HcalTPGCoderULUT() override;
45 
46  typedef std::shared_ptr<HcalTPGCoder> ReturnType;
47 
49 
50 private:
52 
54 
55  // ----------member data ---------------------------
62  int maskBit_;
63  std::vector<uint32_t> FG_HF_thresholds_;
65 };
66 
67 //
68 // constants, enums and typedefs
69 //
70 
71 //
72 // static data member definitions
73 //
74 
75 //
76 // constructors and destructor
77 //
79  read_Ascii_ = iConfig.getParameter<bool>("read_Ascii_LUTs");
80  read_XML_ = iConfig.getParameter<bool>("read_XML_LUTs");
81  read_FGLut_ = iConfig.getParameter<bool>("read_FG_LUTs");
82  fgfile_ = iConfig.getParameter<edm::FileInPath>("FGLUTs");
83 
84  //the following line is needed to tell the framework what
85  // data is being produced
86  auto cc = setWhatProduced(this);
87  cc.setConsumes(topoToken_).setConsumes(delayToken_, edm::ESInputTag{"", "HBHE"});
88 
89  if (!(read_Ascii_ || read_XML_)) {
90  LUTGenerationMode_ = iConfig.getParameter<bool>("LUTGenerationMode");
91  linearLUTs_ = iConfig.getParameter<bool>("linearLUTs");
92  auto scales = iConfig.getParameter<edm::ParameterSet>("tpScales").getParameter<edm::ParameterSet>("HBHE");
93  linearLSB_QIE8_ = scales.getParameter<double>("LSBQIE8");
94  linearLSB_QIE11_ = scales.getParameter<double>("LSBQIE11");
95  linearLSB_QIE11Overlap_ = scales.getParameter<double>("LSBQIE11Overlap");
96  maskBit_ = iConfig.getParameter<int>("MaskBit");
97  FG_HF_thresholds_ = iConfig.getParameter<std::vector<uint32_t> >("FG_HF_thresholds");
98  cc.setConsumes(serviceToken_);
99  } else {
100  ifilename_ = iConfig.getParameter<edm::FileInPath>("inputLUTs");
101  }
102 }
103 
105  using namespace edm::es;
106  theCoder->init(topo, delay);
107  if (read_Ascii_ || read_XML_) {
108  edm::LogInfo("HCAL") << "Using ASCII/XML LUTs" << ifilename_.fullPath() << " for HcalTPGCoderULUT initialization";
109  if (read_Ascii_) {
110  theCoder->update(ifilename_.fullPath().c_str());
111  } else if (read_XML_) {
112  theCoder->updateXML(ifilename_.fullPath().c_str());
113  }
114  // Read FG LUT and append to most significant bit 11
115  if (read_FGLut_) {
116  theCoder->update(fgfile_.fullPath().c_str(), true);
117  }
118  } else {
121  theCoder->setMaskBit(maskBit_);
123  }
124 }
125 
127  // do anything here that needs to be done at desctruction time
128  // (e.g. close files, deallocate resources etc.)
129 }
130 
131 //
132 // member functions
133 //
134 
135 // ------------ method called to produce the data ------------
137  auto host = holder_.makeOrGet([]() { return new HostType; });
138 
139  const auto& topo = iRecord.get(topoToken_);
140  const auto& delay = iRecord.getRecord<HcalDbRecord>().get(delayToken_);
141  if (read_Ascii_ || read_XML_) {
142  buildCoder(&topo, &delay, host.get());
143  } else {
144  host->ifRecordChanges<HcalDbRecord>(iRecord, [this, &topo, &delay, h = host.get()](auto const& rec) {
145  buildCoder(&topo, &delay, h);
146  h->update(rec.get(serviceToken_));
147  // Temporary update for FG Lut
148  // Will be moved to DB
149  if (read_FGLut_)
150  h->update(fgfile_.fullPath().c_str(), true);
151  });
152  }
153  return host;
154 }
155 
156 //define this as a plug-in
edm::eventsetup::DependentRecordImplementation::getRecord
const DepRecordT getRecord() const
Definition: DependentRecordImplementation.h:51
HcaluLUTTPGCoder::update
void update(const HcalDbService &conditions)
Definition: HcaluLUTTPGCoder.cc:328
HcalTPGCoderULUT::FG_HF_thresholds_
std::vector< uint32_t > FG_HF_thresholds_
Definition: HcalTPGCoderULUT.cc:63
edm::ESInputTag
Definition: ESInputTag.h:87
HcalTPGCoderULUT::fgfile_
edm::FileInPath fgfile_
Definition: HcalTPGCoderULUT.cc:64
MessageLogger.h
ESHandle.h
HcalTPGCoderULUT::read_Ascii_
bool read_Ascii_
Definition: HcalTPGCoderULUT.cc:60
HcalTPGRecord
Definition: HcalTPGRecord.h:25
HcalTPGCoderULUT::LUTGenerationMode_
bool LUTGenerationMode_
Definition: HcalTPGCoderULUT.cc:60
HcalTPGCoderULUT::produce
ReturnType produce(const HcalTPGRecord &)
Definition: HcalTPGCoderULUT.cc:136
HcaluLUTTPGCoder::updateXML
void updateXML(const char *filename)
Definition: HcaluLUTTPGCoder.cc:256
HcalTopology
Definition: HcalTopology.h:26
edm::LogInfo
Definition: MessageLogger.h:254
edm::ESProducer::setWhatProduced
auto setWhatProduced(T *iThis, const es::Label &iLabel={})
Definition: ESProducer.h:138
ESProducer.h
HcalTPGCoderULUT::buildCoder
void buildCoder(const HcalTopology *, const HcalTimeSlew *, HcaluLUTTPGCoder *)
Definition: HcalTPGCoderULUT.cc:104
HcalTPGRecord.h
HcalTimeSlew
Definition: HcalTimeSlew.h:19
HcalTPGCoderULUT::linearLSB_QIE11Overlap_
double linearLSB_QIE11Overlap_
Definition: HcalTPGCoderULUT.cc:61
query.host
host
Definition: query.py:115
edm::ReusableObjectHolder< HostType >
edm::ReusableObjectHolder::makeOrGet
std::shared_ptr< T > makeOrGet(F iFunc)
If there isn't an object already available, creates a new one using iFunc.
Definition: ReusableObjectHolder.h:126
edm::FileInPath
Definition: FileInPath.h:64
HcalTPGCoderULUT::topoToken_
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord > topoToken_
Definition: HcalTPGCoderULUT.cc:57
HcaluLUTTPGCoder.h
ReusableObjectHolder.h
h
HcaluLUTTPGCoder::setLUTGenerationMode
void setLUTGenerationMode(bool gen)
Definition: HcaluLUTTPGCoder.h:59
HcaluLUTTPGCoder::setMaskBit
void setMaskBit(int bit)
Definition: HcaluLUTTPGCoder.h:61
edm::eventsetup::DependentRecordImplementation::get
ProductT const & get(ESGetToken< ProductT, DepRecordT > const &iToken) const
Definition: DependentRecordImplementation.h:112
HcalTPGCoderULUT::delayToken_
edm::ESGetToken< HcalTimeSlew, HcalTimeSlewRecord > delayToken_
Definition: HcalTPGCoderULUT.cc:58
HcalTPGCoderULUT::ifilename_
edm::FileInPath ifilename_
Definition: HcalTPGCoderULUT.cc:64
HcalTPGCoderULUT::linearLSB_QIE11_
double linearLSB_QIE11_
Definition: HcalTPGCoderULUT.cc:61
edm::ParameterSet
Definition: ParameterSet.h:36
HcalTPGCoderULUT
Definition: HcalTPGCoderULUT.cc:41
HcalTPGCoderULUT::ReturnType
std::shared_ptr< HcalTPGCoder > ReturnType
Definition: HcalTPGCoderULUT.cc:46
HcaluLUTTPGCoder
Definition: HcaluLUTTPGCoder.h:32
HcaluLUTTPGCoder::init
void init(const HcalTopology *top, const HcalTimeSlew *delay)
Definition: HcaluLUTTPGCoder.cc:71
HcalTPGCoderULUT::HcalTPGCoderULUT
HcalTPGCoderULUT(const edm::ParameterSet &)
Definition: HcalTPGCoderULUT.cc:78
HcalTPGCoderULUT::maskBit_
int maskBit_
Definition: HcalTPGCoderULUT.cc:62
get
#define get
cc
HcalTPGCoderULUT::linearLUTs_
bool linearLUTs_
Definition: HcalTPGCoderULUT.cc:60
edm::ESGetToken< HcalTopology, HcalRecNumberingRecord >
HcalTPGCoderULUT::serviceToken_
edm::ESGetToken< HcalDbService, HcalDbRecord > serviceToken_
Definition: HcalTPGCoderULUT.cc:59
edm::ParameterSet::getParameter
T getParameter(std::string const &) const
HcalTopology.h
ModuleFactory.h
edm::ESProductHost
Definition: ESProductHost.h:93
HcalTPGCoderULUT::~HcalTPGCoderULUT
~HcalTPGCoderULUT() override
Definition: HcalTPGCoderULUT.cc:126
HcaluLUTTPGCoder::setAllLinear
void setAllLinear(bool linear, double lsb8, double lsb11, double lsb11overlap)
Definition: HcaluLUTTPGCoder.h:62
DEFINE_FWK_EVENTSETUP_MODULE
#define DEFINE_FWK_EVENTSETUP_MODULE(type)
Definition: ModuleFactory.h:60
HcalTPGCoderULUT::read_XML_
bool read_XML_
Definition: HcalTPGCoderULUT.cc:60
edm::es
Definition: es_Label.h:33
HcalDbService.h
edm::ESProducer
Definition: ESProducer.h:101
ESProductHost.h
phase2TrackerDigitizer_cfi.delay
delay
Definition: phase2TrackerDigitizer_cfi.py:67
HcalDbRecord
Definition: HcalDbRecord.h:30
HcalTPGCoderULUT::holder_
edm::ReusableObjectHolder< HostType > holder_
Definition: HcalTPGCoderULUT.cc:56
HcalTPGCoderULUT::read_FGLut_
bool read_FGLut_
Definition: HcalTPGCoderULUT.cc:60
HcalTPGCoderULUT::HostType
edm::ESProductHost< HcaluLUTTPGCoder, HcalDbRecord > HostType
Definition: HcalTPGCoderULUT.cc:51
edm::FileInPath::fullPath
std::string fullPath() const
Definition: FileInPath.cc:163
HcaluLUTTPGCoder::setFGHFthresholds
void setFGHFthresholds(const std::vector< uint32_t > &fgthresholds)
Definition: HcaluLUTTPGCoder.h:60
HcalTPGCoderULUT::linearLSB_QIE8_
double linearLSB_QIE8_
Definition: HcalTPGCoderULUT.cc:61