CMS 3D CMS Logo

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

#include <EcalADCToGeVHandler.h>

Inheritance diagram for popcon::EcalADCToGeVHandler:
popcon::PopConSourceHandler< EcalADCToGeVConstant >

Public Member Functions

 EcalADCToGeVHandler (edm::ParameterSet const &)
 
void getNewObjects ()
 
std::string id () const
 
 ~EcalADCToGeVHandler ()
 
- Public Member Functions inherited from popcon::PopConSourceHandler< EcalADCToGeVConstant >
void convertFromOld ()
 
SummarydummySummary (typename OldContainer::value_type const &) const
 
void initialize (cond::DbSession dbSession, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry)
 
Ref lastPayload () const
 
cond::LogDBEntry const & logDBEntry () const
 
std::pair< Container const
*, std::string const > 
operator() (cond::DbSession session, cond::TagInfo const &tagInfo, cond::LogDBEntry const &logDBEntry) const
 
 PopConSourceHandler ()
 
Container const & returnData ()
 
void sort ()
 
cond::TagInfo const & tagInfo () const
 
std::string const & userTextLog () const
 
virtual ~PopConSourceHandler ()
 

Public Attributes

EcalCondDBInterfaceeconn
 

Private Attributes

std::string m_file_highfield
 
std::string m_file_lowfield
 
unsigned int m_firstRun
 
std::string m_gentag
 
unsigned int m_lastRun
 
std::string m_location
 
std::string m_locationsource
 
std::string m_name
 
std::string m_pass
 
std::string m_sid
 
std::string m_user
 
const EcalADCToGeVConstantmyintercalib
 

Additional Inherited Members

- Public Types inherited from popcon::PopConSourceHandler< EcalADCToGeVConstant >
typedef std::vector< TripletContainer
 
typedef std::vector< std::pair
< EcalADCToGeVConstant
*, cond::Time_t > > 
OldContainer
 
typedef PopConSourceHandler
< EcalADCToGeVConstant
self
 
typedef cond::Summary Summary
 
typedef cond::Time_t Time_t
 
typedef EcalADCToGeVConstant value_type
 
- Protected Member Functions inherited from popcon::PopConSourceHandler< EcalADCToGeVConstant >
int add (value_type *payload, Summary *summary, Time_t time)
 
- Protected Attributes inherited from popcon::PopConSourceHandler< EcalADCToGeVConstant >
OldContainer m_to_transfer
 
std::string m_userTextLog
 

Detailed Description

Definition at line 56 of file EcalADCToGeVHandler.h.

Constructor & Destructor Documentation

popcon::EcalADCToGeVHandler::EcalADCToGeVHandler ( edm::ParameterSet const &  ps)

Definition at line 9 of file EcalADCToGeVHandler.cc.

References gather_cfg::cout, edm::ParameterSet::getParameter(), m_file_highfield, m_file_lowfield, m_firstRun, m_gentag, m_lastRun, m_location, m_locationsource, m_pass, m_sid, and m_user.

10  : m_name(ps.getUntrackedParameter<std::string>("name","EcalADCToGeVHandler")) {
11 
12  std::cout << "EcalADCToGeV Source handler constructor\n" << std::endl;
13  m_firstRun=static_cast<unsigned int>(atoi( ps.getParameter<std::string>("firstRun").c_str()));
14  m_lastRun=static_cast<unsigned int>(atoi( ps.getParameter<std::string>("lastRun").c_str()));
15  m_sid= ps.getParameter<std::string>("OnlineDBSID");
16  m_user= ps.getParameter<std::string>("OnlineDBUser");
17  m_pass= ps.getParameter<std::string>("OnlineDBPassword");
18  m_locationsource= ps.getParameter<std::string>("LocationSource");
19  m_location=ps.getParameter<std::string>("Location");
20  m_gentag=ps.getParameter<std::string>("GenTag");
21  m_file_lowfield= ps.getParameter<std::string>("FileLowField");
22  m_file_highfield= ps.getParameter<std::string>("FileHighField");
23 
24 
25 
26  std::cout << m_sid<<"/"<<m_user<<"/"<<m_location<<"/"<<m_gentag << std::endl;
27 
28 
29 }
tuple cout
Definition: gather_cfg.py:121
popcon::EcalADCToGeVHandler::~EcalADCToGeVHandler ( )

Definition at line 31 of file EcalADCToGeVHandler.cc.

32 {
33 }

Member Function Documentation

void popcon::EcalADCToGeVHandler::getNewObjects ( )
virtual

Implements popcon::PopConSourceHandler< EcalADCToGeVConstant >.

Definition at line 36 of file EcalADCToGeVHandler.cc.

References gather_cfg::cout, dataset::dataset, edm::hlt::Exception, EcalADCToGeVConstant::getEBValue(), RunDCSMagnetDat::getMagnetCurrent(), RunIOV::getRunNumber(), errorMatrix2Lands::header, and EcalADCToGeVXMLTranslator::readXML().

37 {
38 
39  std::cout << "------- Ecal - > getNewObjects\n";
40 
41  std::ostringstream ss;
42  ss<<"ECAL ";
43 
44  unsigned int max_since=0;
45  max_since=static_cast<unsigned int>(tagInfo().lastInterval.first);
46  std::cout << "max_since : " << max_since << std::endl;
47  Ref ped_db = lastPayload();
48 
49  // we parse the last record in the DB and check if it is low or high field
50 
51  std::cout << "retrieved last payload " << std::endl;
52 
53 
54  EcalADCToGeVConstant the_cal ;
55 
56  float adc_eb=ped_db->getEBValue();
57  float adc_ee=ped_db->getEEValue();
58 
59  float the_value_high_eb=0.03894;
60  float the_value_high_ee=0.06285;
61 
62 
63  bool magnet_high=true;
64  if(adc_eb!= the_value_high_eb || adc_ee!= the_value_high_ee ) magnet_high=false;
65 
66 
67  // here we connect to the online DB to check the value of the magnetic field
68 
69  std::cout << "Connecting to ONLINE DB ... " << std::endl;
71  std::cout << "Connection done" << std::endl;
72 
73  if (!econn)
74  {
75  std::cout << " Problem with OMDS: connection parameters " <<m_sid <<"/"<<m_user<<"/"<<m_pass<<std::endl;
76  throw cms::Exception("OMDS not available");
77  }
78 
79 
80  std::cout << "Retrieving last run from ONLINE DB ... " << std::endl;
81  std::map<EcalLogicID, RunDat> rundat;
82  RunIOV rp ;
83  run_t runmax=10000000;
84  std::string location_p5="P5_Co";
85  econn->fetchValidDataSet(&rundat , &rp, location_p5 ,runmax);
86 
87  unsigned long long irun=(unsigned long long) rp.getRunNumber();
88 
89  std::cout<< "retrieved run number "<< irun <<std::endl;
90 
91  if(irun>max_since) {
92 
93 
94  // retrieve from last value data record
95  // always call this method at first run
96 
97  std::map<EcalLogicID, RunDCSMagnetDat> dataset;
98 
99  econn->fetchDataSet(&dataset, &rp);
100 
101  if (!dataset.size()) {
102  throw(std::runtime_error("Zero rows read back"));
103  } else {
104  std::cout<< "retrieved magnet current"<<std::endl;
105  }
106 
107 
108  float mag_cur=0;
109 
110  std::map< EcalLogicID, RunDCSMagnetDat >::iterator it;
111  for (it=dataset.begin(); it!=dataset.end(); ++it){
112 
113  RunDCSMagnetDat a_mag = (*it).second;
114  mag_cur= a_mag.getMagnetCurrent();
115 
116  }
117 
118 
119  std::string file_=m_file_highfield;
120  bool something_to_transfer=false;
121  if(mag_cur>7000. && magnet_high ) {
122 
123  std::cout << " the magnet is ON and the constants are for magnet ON " << std::endl;
124 
125  } else if(mag_cur>7000. && !magnet_high ) {
126  something_to_transfer=true;
127  std::cout << " the magnet is ON and the constants are for magnet OFF " << std::endl;
128  std::cout << " I transfer the ON constants "<< std::endl;
129  file_=m_file_highfield;
130 
131  } else if(mag_cur<6000. && magnet_high ) {
132  something_to_transfer=true;
133  std::cout << " the magnet is OFF and the constants are for magnet ON "<< std::endl;
134  std::cout << " I transfer the OFF constants "<< std::endl;
135  file_=m_file_lowfield;
136 
137  } else if( mag_cur<6000. && !magnet_high ){
138 
139  std::cout << " the magnet is OFF and the constants are for magnet OFF "<< std::endl;
140  file_=m_file_lowfield;
141 
142  } else {
143 
144  std::cout << " the magnet is in a strange situation I do nothing ... just be patient "<< std::endl;
145 
146  }
147 
148 
149  if(something_to_transfer){
150 
151  std::cout << "Generating popcon record for run " << irun << "..." << std::flush;
152  std::cout << "going to open file "<<file_ << std::flush;
153 
154 
157  EcalADCToGeVXMLTranslator::readXML(file_,header,*payload);
158 
159 
160  Time_t snc= (Time_t) irun ;
161 
163  std::make_pair(payload,snc));
164 
165  ss << "Run=" << irun << "_Magnet_changed_"<<std::endl;
166  m_userTextLog = ss.str()+";";
167 
168 
169  } else {
170  std::cout << "Run " << irun << " nothing sent to the DB"<< std::endl;
171 
172  ss<< "Run=" << irun << "_Magnet_NOT_changed_"<<std::endl;
173  m_userTextLog = ss.str()+";";
174  }
175 
176 
177  delete econn;
178  } else {
179  std::cout << "Run " << irun << " nothing sent to the DB"<< std::endl;
180  ss<< "Run=" << irun << "_no_new_runs_"<<std::endl;
181  m_userTextLog = ss.str()+";";
182 
183 
184  }
185 
186 
187 
188  std::cout << "Ecal - > end of getNewObjects -----------\n";
189 
190 }
int run_t
Definition: CaliIOV.h:11
void fetchValidDataSet(std::map< EcalLogicID, DATT > *fillMap, IOVT *fillIOV, RunTag *tag, run_t run=(unsigned int)-1)
static int readXML(const std::string &filename, EcalCondHeader &header, EcalADCToGeVConstant &record)
float getMagnetCurrent() const
void fetchDataSet(std::map< EcalLogicID, DATT > *fillMap, IOVT *iov)
tuple dataset
Definition: dataset.py:400
run_t getRunNumber() const
Definition: RunIOV.cc:45
cond::ValidityInterval lastInterval
Definition: TagInfo.h:11
tuple cout
Definition: gather_cfg.py:121
Definition: RunIOV.h:13
EcalCondDBInterface * econn
std::string popcon::EcalADCToGeVHandler::id ( void  ) const
inlinevirtual

Implements popcon::PopConSourceHandler< EcalADCToGeVConstant >.

Definition at line 65 of file EcalADCToGeVHandler.h.

References m_name.

65 { return m_name;}

Member Data Documentation

EcalCondDBInterface* popcon::EcalADCToGeVHandler::econn

Definition at line 66 of file EcalADCToGeVHandler.h.

std::string popcon::EcalADCToGeVHandler::m_file_highfield
private

Definition at line 84 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_file_lowfield
private

Definition at line 83 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

unsigned int popcon::EcalADCToGeVHandler::m_firstRun
private

Definition at line 73 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_gentag
private

Definition at line 77 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

unsigned int popcon::EcalADCToGeVHandler::m_lastRun
private

Definition at line 74 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_location
private

Definition at line 76 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_locationsource
private

Definition at line 81 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_name
private

Definition at line 82 of file EcalADCToGeVHandler.h.

Referenced by id().

std::string popcon::EcalADCToGeVHandler::m_pass
private

Definition at line 80 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_sid
private

Definition at line 78 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

std::string popcon::EcalADCToGeVHandler::m_user
private

Definition at line 79 of file EcalADCToGeVHandler.h.

Referenced by EcalADCToGeVHandler().

const EcalADCToGeVConstant* popcon::EcalADCToGeVHandler::myintercalib
private

Definition at line 71 of file EcalADCToGeVHandler.h.