CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Types | Private Attributes
popcon::EcalTPGLinPed Class Reference

#include <EcalTPGLinPed.h>

Inheritance diagram for popcon::EcalTPGLinPed:
popcon::PopConSourceHandler< EcalTPGPedestals >

Public Member Functions

 EcalTPGLinPed (edm::ParameterSet const &)
 
void getNewObjects () override
 
std::string id () const override
 
 ~EcalTPGLinPed () override
 
- Public Member Functions inherited from popcon::PopConSourceHandler< EcalTPGPedestals >
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 ()
 
cond::TagInfo_t const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Private Types

enum  { kEBChannels = 61200, kEEChannels = 14648, kGains = 3 }
 

Private Attributes

std::string m_name
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< EcalTPGPedestals >
typedef std::map< Time_t,
std::shared_ptr
< EcalTPGPedestals > > 
Container
 
typedef std::unique_ptr
< EcalTPGPedestals
Ref
 
typedef PopConSourceHandler
< EcalTPGPedestals
self
 
typedef cond::Time_t Time_t
 
typedef EcalTPGPedestals value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< EcalTPGPedestals >
cond::persistency::SessiondbSession () const
 
- Protected Attributes inherited from popcon::PopConSourceHandler< EcalTPGPedestals >
Container m_iovs
 
std::vector< std::pair
< EcalTPGPedestals *, Time_t > > 
m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 48 of file EcalTPGLinPed.h.

Member Enumeration Documentation

anonymous enum
private
Enumerator
kEBChannels 
kEEChannels 
kGains 

Definition at line 57 of file EcalTPGLinPed.h.

Constructor & Destructor Documentation

popcon::EcalTPGLinPed::~EcalTPGLinPed ( )
override

Definition at line 18 of file EcalTPGLinPed.cc.

18  {
19  // do nothing
20 }
popcon::EcalTPGLinPed::EcalTPGLinPed ( edm::ParameterSet const &  ps)

Definition at line 13 of file EcalTPGLinPed.cc.

References gather_cfg::cout.

14  : m_name(ps.getUntrackedParameter<std::string>("name", "EcalTPGLinPedHandler")) {
15  std::cout << "EcalTPGLinPed constructor\n" << std::endl;
16 }
tuple cout
Definition: gather_cfg.py:144

Member Function Documentation

void popcon::EcalTPGLinPed::getNewObjects ( )
overridevirtual

Implements popcon::PopConSourceHandler< EcalTPGPedestals >.

Definition at line 22 of file EcalTPGLinPed.cc.

References gather_cfg::cout, alignmentValidation::fname, mps_fire::i, gpuClustering::id, EcalCondObjectContainer< T >::insert(), B2GTnPMonitor_cfi::item, kEBChannels, kEEChannels, kGains, geometryCSVtoXML::line, VarParsing::mult, jetCorrFactors_cfi::payload, edm::shift, AlCaHLTBitMon_QueryRunRegistry::string, and dumpRecoGeometry_cfg::tagInfo.

22  {
23  std::cout << "------- Ecal -> getNewObjects\n";
24 
25  unsigned long long max_since = 1;
27 
28  // here popcon tells us which is the last since of the last object in the offline DB
29  max_since = tagInfo().lastInterval.since;
30  Tm max_since_tm(max_since);
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 < 85; i++)
47  getline(fLin, line);
48  char cryst[10];
49  uint32_t ped[kGains], mult[kGains], shift[kGains];
50  uint32_t id;
53  for (int iChannel = 0; iChannel < kEBChannels; iChannel++) {
54  getline(fLin, line);
55  sscanf(line.c_str(), "%s %u", cryst, &id);
56  for (int gain = 0; gain < kGains; gain++) {
57  getline(fLin, line);
58  sscanf(line.c_str(), "%X %X %X", &ped[gain], &mult[gain], &shift[gain]);
59  }
61  item.mult_x1 = mult[2];
62  item.mult_x6 = mult[1];
63  item.mult_x12 = mult[0];
64  item.shift_x1 = shift[2];
65  item.shift_x6 = shift[1];
66  item.shift_x12 = shift[0];
67 
68  EcalTPGPedestals::Item itemPed;
69  itemPed.mean_x1 = ped[2];
70  itemPed.mean_x6 = ped[1];
71  itemPed.mean_x12 = ped[0];
72 
73  linC->insert(std::make_pair(id, item));
74  peds->insert(std::make_pair(id, itemPed));
75  } // end loop over EB channels
76  getline(fLin, line); // comment before EE crystals
77  std::cout << " comment line " << line << std::endl;
78  for (int iChannel = 0; iChannel < kEEChannels; iChannel++) {
79  getline(fLin, line);
80  // std::cout << " line " << line << std::endl;
81  sscanf(line.c_str(), "%s %u", cryst, &id);
82  // std::cout << cryst << " id " << id << std::endl;
83  for (int gain = 0; gain < kGains; gain++) {
84  getline(fLin, line);
85  // std::cout << " line g " << line << std::endl;
86  sscanf(line.c_str(), "%X %X %X", &ped[gain], &mult[gain], &shift[gain]);
87  // std::cout << " gain " << gain << " ped " << ped[gain] << " mult " << mult[gain] << " shift " << shift[gain]<< std::endl;
88  }
90  item.mult_x1 = mult[2];
91  item.mult_x6 = mult[1];
92  item.mult_x12 = mult[0];
93  item.shift_x1 = shift[2];
94  item.shift_x6 = shift[1];
95  item.shift_x12 = shift[0];
96 
97  EcalTPGPedestals::Item itemPed;
98  itemPed.mean_x1 = ped[2];
99  itemPed.mean_x6 = ped[1];
100  itemPed.mean_x12 = ped[0];
101 
102  linC->insert(std::make_pair(id, item));
103  peds->insert(std::make_pair(id, itemPed));
104  } // end loop over EE channels
105  fLin.close();
106  // for the time beeing just transfer pedestal
107  // m_to_transfer.push_back(std::make_pair(linC, fileIOV));
108  m_to_transfer.push_back(std::make_pair(peds, fileIOV));
109 
110  std::cout << "Ecal -> end of getNewObjects -----------\n";
111 }
Iov_t lastInterval
Definition: Types.h:73
Time_t since
Definition: Types.h:53
std::vector< std::pair< EcalTPGPedestals *, Time_t > > m_to_transfer
void insert(std::pair< uint32_t, Item > const &a)
std::string id() const override
Definition: EcalTPGLinPed.h:54
string fname
main script
std::unique_ptr< EcalTPGPedestals > Ref
static unsigned int const shift
tuple cout
Definition: gather_cfg.py:144
EcalTPGPedestalsMap EcalTPGPedestals
Definition: Tm.h:13
EcalTPGLinearizationConstMap EcalTPGLinearizationConst
std::string popcon::EcalTPGLinPed::id ( ) const
inlineoverridevirtual

Implements popcon::PopConSourceHandler< EcalTPGPedestals >.

Definition at line 54 of file EcalTPGLinPed.h.

References m_name.

54 { return m_name; }

Member Data Documentation

std::string popcon::EcalTPGLinPed::m_name
private

Definition at line 58 of file EcalTPGLinPed.h.

Referenced by id().