CMS 3D CMS Logo

List of all members | Public Member Functions | Private Attributes
popcon::EcalTPGSpikeThresholdfromFile Class Reference

#include <EcalTPGSpikeThresholdfromFile.h>

Inheritance diagram for popcon::EcalTPGSpikeThresholdfromFile:
popcon::PopConSourceHandler< EcalTPGSpike >

Public Member Functions

 EcalTPGSpikeThresholdfromFile (edm::ParameterSet const &)
 
void getNewObjects () override
 
std::string id () const override
 
 ~EcalTPGSpikeThresholdfromFile () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< EcalTPGSpike >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (const cond::persistency::Session &dbSession, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry_t const & logDBEntry () const
 
std::pair< Container const *, std::string const > operator() (const cond::persistency::Session &session, cond::TagInfo_t const &tagInfo, cond::LogDBEntry_t const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Attributes

std::string m_name
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< EcalTPGSpike >
typedef std::vector< Triplet > Container
 
typedef std::vector< std::pair< EcalTPGSpike *, cond::Time_t > > OldContainer
 
typedef PopConSourceHandler< EcalTPGSpikeself
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef EcalTPGSpike value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< EcalTPGSpike >
int add (value_type *payload, Summary *summary, Time_t time)
 
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< EcalTPGSpike >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 44 of file EcalTPGSpikeThresholdfromFile.h.

Constructor & Destructor Documentation

popcon::EcalTPGSpikeThresholdfromFile::~EcalTPGSpikeThresholdfromFile ( )
override

Definition at line 20 of file EcalTPGSpikeThresholdfromFile.cc.

20  {
21  // do nothing
22 }
popcon::EcalTPGSpikeThresholdfromFile::EcalTPGSpikeThresholdfromFile ( edm::ParameterSet const &  )

Definition at line 14 of file EcalTPGSpikeThresholdfromFile.cc.

References gather_cfg::cout.

15  : m_name(ps.getUntrackedParameter<std::string>("name","EcalTPGSpikeThresholdfromFile")) {
16 
17  std::cout << "EcalTPGSpikeThresholdfromFile constructor\n" << std::endl;
18 }

Member Function Documentation

void popcon::EcalTPGSpikeThresholdfromFile::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< EcalTPGSpike >.

Definition at line 24 of file EcalTPGSpikeThresholdfromFile.cc.

References gather_cfg::cout, alignmentValidation::fname, mps_fire::i, popcon::PopConSourceHandler< EcalTPGSpike >::lastPayload(), mps_splice::line, lumiPlot::lut, popcon::PopConSourceHandler< EcalTPGSpike >::m_to_transfer, jets_cff::payload, EcalTPGSpike::setValue(), AlCaHLTBitMon_QueryRunRegistry::string, jetExtractorBlock_cff::Threshold, and DataFormats::L1THGCal::towerId.

24  {
25  std::cout << "------- Ecal -> getNewObjects\n";
26  edm::LogInfo("EcalTPGSpikeThresholdfromFile") << "Started GetNewObjects!!!";
27 
29 
30  // here popcon tells us which is the last since of the last object in the offline DB
31 
32  int fileIOV;
33  std::cout << "LinPed which input IOV do you want " << std::endl;
34  std::cin >> fileIOV;
35  std::ifstream fLin;
36  std::ostringstream oss;
37  oss << fileIOV;
38  std::string fname = "/afs/cern.ch/cms/ECAL/triggerTransp/TPG_beamv6_trans_" + oss.str() + "_spikekill.txt";
39  fLin.open(fname.c_str());
40  if(!fLin.is_open()) {
41  std::cout << "ERROR : can't open file '" << fname << std::endl;
42  return;
43  }
44  std::cout << " file " << fname << " opened" << std::endl;
46  for(int i = 0; i < 365223; i++) getline (fLin, line);
47  char tow[8];
48  unsigned int towerId, Threshold;
50  for (int istrip = 0; istrip < 2448; istrip++) {
51  getline (fLin, line);
52  sscanf(line.c_str(), "%s %u", tow, &towerId);
53  if(istrip < 10) std::cout << " string " << tow << " Id " << towerId;
54  getline (fLin, line); // LUTGroupId
55  getline (fLin, line); // FgGroupId
56  getline (fLin, line); // spike_killing_threshold
57  if(istrip < 10) std::cout << " line " << line;
58  sscanf(line.c_str(), "%u", &Threshold);
59  if(istrip < 10) std::cout << " Threshold " << Threshold << std::endl;
60 
61  lut->setValue(towerId, Threshold);
62  } // end loop over EB towers
63  fLin.close();
64 
65  m_to_transfer.push_back(std::make_pair(lut, fileIOV));
66 
67  std::cout << "Ecal -> end of getNewObjects -----------\n";
68 }
void setValue(const uint32_t &id, const uint16_t &val)
Definition: EcalTPGSpike.cc:10
l1t::HGCalTowerID towerId
Definition: classes.h:36
string fname
main script
std::string popcon::EcalTPGSpikeThresholdfromFile::id ( ) const
inlineoverridevirtual

Member Data Documentation

std::string popcon::EcalTPGSpikeThresholdfromFile::m_name
private

Definition at line 54 of file EcalTPGSpikeThresholdfromFile.h.