test
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 Member Functions | Private Attributes
EcalPreshowerMonitorClient Class Reference

#include <EcalPreshowerMonitorClient.h>

Inheritance diagram for EcalPreshowerMonitorClient:
edm::EDAnalyzer edm::EDConsumerBase

Public Member Functions

 EcalPreshowerMonitorClient (const edm::ParameterSet &ps)
 
virtual ~EcalPreshowerMonitorClient ()
 
- Public Member Functions inherited from edm::EDAnalyzer
void callWhenNewProductsRegistered (std::function< void(BranchDescription const &)> const &func)
 
 EDAnalyzer ()
 
ModuleDescription const & moduleDescription () const
 
std::string workerType () const
 
virtual ~EDAnalyzer ()
 
- Public Member Functions inherited from edm::EDConsumerBase
 EDConsumerBase ()
 
ProductHolderIndexAndSkipBit indexFrom (EDGetToken, BranchType, TypeID const &) const
 
void itemsMayGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
void itemsToGet (BranchType, std::vector< ProductHolderIndexAndSkipBit > &) const
 
std::vector
< ProductHolderIndexAndSkipBit >
const & 
itemsToGetFromEvent () const
 
void labelsForToken (EDGetToken iToken, Labels &oLabels) const
 
void modulesDependentUpon (const std::string &iProcessName, std::vector< const char * > &oModuleLabels) const
 
bool registeredToConsume (ProductHolderIndex, bool, BranchType) const
 
bool registeredToConsumeMany (TypeID const &, BranchType) const
 
void updateLookup (BranchType iBranchType, ProductHolderIndexHelper const &)
 
virtual ~EDConsumerBase ()
 

Private Member Functions

virtual void analyze (const edm::Event &, const edm::EventSetup &)
 
virtual void analyze ()
 
virtual void beginJob ()
 
void beginLuminosityBlock (const edm::LuminosityBlock &l, const edm::EventSetup &c)
 
virtual void beginRun (void)
 
virtual void beginRun (const edm::Run &, const edm::EventSetup &)
 
virtual void endJob ()
 
void endLuminosityBlock (const edm::LuminosityBlock &l, const edm::EventSetup &c)
 
virtual void endRun (void)
 
virtual void endRun (const edm::Run &, const edm::EventSetup &)
 
void htmlOutput (int)
 

Private Attributes

bool begin_run_
 
std::vector< ESClient * > clients_
 
int dac_
 
bool debug_
 
DQMStoredqmStore_
 
std::vector< std::string > enabledClients_
 
bool end_run_
 
int firstDAC_
 
int gain_
 
int ievt_
 
std::string inputFile_
 
int isPed_
 
int jevt_
 
int layer_
 
int nDAC_
 
int nLines_
 
std::string outputFile_
 
int precision_
 
std::string prefixME_
 
int prescaleFactor_
 
int qt [40][40]
 
int qtCriteria
 
int runNum_
 
int runtype_
 
int senP_ [4288]
 
int senX_ [4288]
 
int senY_ [4288]
 
int senZ_ [4288]
 
int seqtype_
 
int vDAC_ [5]
 
bool verbose_
 

Additional Inherited Members

- Public Types inherited from edm::EDAnalyzer
typedef EDAnalyzer ModuleType
 
- Static Public Member Functions inherited from edm::EDAnalyzer
static const std::string & baseType ()
 
static void fillDescriptions (ConfigurationDescriptions &descriptions)
 
static void prevalidate (ConfigurationDescriptions &)
 
- 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

Definition at line 13 of file EcalPreshowerMonitorClient.h.

Constructor & Destructor Documentation

EcalPreshowerMonitorClient::EcalPreshowerMonitorClient ( const edm::ParameterSet ps)

Definition at line 25 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, spr::find(), edm::ParameterSet::getUntrackedParameter(), and i.

25  {
26 
27  verbose_ = ps.getUntrackedParameter<bool>("verbose", false);
28  outputFile_ = ps.getUntrackedParameter<string>("OutputFile","");
29  inputFile_ = ps.getUntrackedParameter<string>("InputFile","");
30  prefixME_ = ps.getUntrackedParameter<string>("prefixME", "EcalPreshower");
31  debug_ = ps.getUntrackedParameter<bool>("debug", false);
32 
33  prescaleFactor_ = ps.getUntrackedParameter<int>("prescaleFactor", 1);
34 
35  //Initial enabledClients
36  enabledClients_.push_back("Integrity");
37  enabledClients_.push_back("Pedestal");
38  enabledClients_.push_back("Summary");
39 
40  enabledClients_ = ps.getUntrackedParameter<vector<string> >("enabledClients", enabledClients_);
41 
42  if ( verbose_ ) {
43  cout << " Enabled Clients:";
44  for ( unsigned int i = 0; i < enabledClients_.size(); i++ ) {
45  cout << " " << enabledClients_[i];
46  }
47  cout << endl;
48  }
49 
50  //Setup Clients
51  if ( find(enabledClients_.begin(), enabledClients_.end(), "Integrity" ) != enabledClients_.end() ){
52  clients_.push_back( new ESIntegrityClient(ps) );
53  }
54 
55  if ( find(enabledClients_.begin(), enabledClients_.end(), "Pedestal" ) != enabledClients_.end() ){
56  clients_.push_back( new ESPedestalClient(ps) );
57  }
58 
59  if ( find(enabledClients_.begin(), enabledClients_.end(), "Summary" ) != enabledClients_.end() ){
60  clients_.push_back( new ESSummaryClient(ps) );
61  }
62 
63  if(debug_){
64  cout<<"PrescaleFactor = "<<prescaleFactor_<<endl;
65  }
66 }
std::vector< ESClient * > clients_
T getUntrackedParameter(std::string const &, T const &) const
int i
Definition: DBlmapReader.cc:9
void find(edm::Handle< EcalRecHitCollection > &hits, DetId thisDet, std::vector< EcalRecHitCollection::const_iterator > &hit, bool debug=false)
Definition: FindCaloHit.cc:7
std::vector< std::string > enabledClients_
tuple cout
Definition: gather_cfg.py:121
EcalPreshowerMonitorClient::~EcalPreshowerMonitorClient ( )
virtual

Definition at line 68 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

68  {
69 
70  if ( verbose_ ) cout << "Finish EcalPreshowerMonitorClient" << endl;
71 
72  for ( unsigned int i=0; i<clients_.size(); i++ ) {
73  delete clients_[i];
74  }
75 
76 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121

Member Function Documentation

void EcalPreshowerMonitorClient::analyze ( const edm::Event e,
const edm::EventSetup c 
)
privatevirtual

Implements edm::EDAnalyzer.

Definition at line 200 of file EcalPreshowerMonitorClient.cc.

References Vispa.Share.Profiling::analyze(), and gather_cfg::cout.

200  {
201 
202  ievt_++;
203  jevt_++;
204 
205  if(debug_) cout<<" analyze(const Event & e, const EventSetup & c) is called"<<endl;
206 
207  if ( prescaleFactor_ > 0 ) {
208  if ( jevt_ % prescaleFactor_ == 0 ) this->analyze();
209  }
210 
211 }
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::analyze ( void  )
privatevirtual

Definition at line 189 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

189  {
190 
191  if(debug_){
192  cout << "EcalPreshowerMonitorClient: ievt/jevt = " << ievt_ << "/" << jevt_ << endl;
193  }
194 
195  for ( unsigned int i=0; i<clients_.size(); i++ ) {
196  clients_[i]->analyze();
197  }
198 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::beginJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 78 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, i, and cppFunctionSkipper::operator.

78  {
79 
80  if(debug_){
81  cout<<"EcalPreshowerMonitorClient: beginJob"<<endl;
82  }
83 
84  ievt_ = 0;
85  jevt_ = 0;
86 
87  // get hold of back-end interface
88 
90 
91  if ( inputFile_.size() != 0 ) {
92  if ( dqmStore_ ) {
94  }
95  }
96 
97  for ( unsigned int i=0; i<clients_.size(); i++ ) {
98  clients_[i]->beginJob(dqmStore_);
99  clients_[i]->setup();
100  }
101 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
bool open(const std::string &filename, bool overwrite=false, const std::string &path="", const std::string &prepend="", OpenRunDirs stripdirs=KeepRunDirs, bool fileMustExist=true)
Definition: DQMStore.cc:2895
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::beginLuminosityBlock ( const edm::LuminosityBlock l,
const edm::EventSetup c 
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 213 of file EcalPreshowerMonitorClient.cc.

213  {
214 }
void EcalPreshowerMonitorClient::beginRun ( void  )
privatevirtual

Definition at line 103 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

103  {
104 
105  if (debug_) {
106  cout << "EcalPreshowerMonitorClient: beginRun" << endl;
107  }
108 
109  jevt_ = 0;
110 
111  begin_run_ = true;
112  end_run_ = false;
113 
114  for ( unsigned int i=0; i<clients_.size(); i++ ) {
115  clients_[i]->beginRun();
116  }
117 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::beginRun ( const edm::Run r,
const edm::EventSetup c 
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 119 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

119  {
120 
121  if (debug_) {
122  cout << "EcalPreshowerMonitorClient: beginRun" << endl;
123  }
124 
125  jevt_ = 0;
126 
127  begin_run_ = true;
128  end_run_ = false;
129 
130  for ( unsigned int i=0; i<clients_.size(); i++ ) {
131  clients_[i]->beginRun();
132  }
133 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::endJob ( void  )
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 135 of file EcalPreshowerMonitorClient.cc.

References Vispa.Share.Profiling::analyze(), gather_cfg::cout, and i.

135  {
136 
137  if (debug_) {
138  cout << "EcalPreshowerMonitorClient: endJob, ievt = " << ievt_ << endl;
139  }
140 
141  if ( ! end_run_ ) {
142  this->analyze();
143  this->endRun();
144  }
145 
146  if ( outputFile_.size() != 0 ) {
147  cout<<"Store Result in "<<outputFile_<<endl;
149  }
150 
151  for ( unsigned int i=0; i<clients_.size(); i++ ) {
152  clients_[i]->endJob();
153  }
154 
155 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
void save(const std::string &filename, const std::string &path="", const std::string &pattern="", const std::string &rewrite="", const uint32_t run=0, const uint32_t lumi=0, SaveReferenceTag ref=SaveWithReference, int minStatus=dqm::qstatus::STATUS_OK, const std::string &fileupdate="RECREATE", const bool resetMEsAfterWriting=false)
Definition: DQMStore.cc:2540
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::endLuminosityBlock ( const edm::LuminosityBlock l,
const edm::EventSetup c 
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 216 of file EcalPreshowerMonitorClient.cc.

References i.

216  {
217 
218  for ( unsigned int i=0; i<clients_.size(); i++ ) {
219  clients_[i]->endLumiAnalyze();
220  }
221 
222 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
void EcalPreshowerMonitorClient::endRun ( void  )
privatevirtual

Definition at line 157 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

157  {
158 
159  if(debug_){
160  cout << "EcalPreshowerMonitorClient: endRun, jevt = " << jevt_ << endl;
161  }
162 
163  begin_run_ = false;
164  end_run_ = true;
165 
166  for ( unsigned int i=0; i<clients_.size(); i++ ) {
167  clients_[i]->analyze();
168  clients_[i]->endRun();
169  }
170 
171 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::endRun ( const edm::Run r,
const edm::EventSetup c 
)
privatevirtual

Reimplemented from edm::EDAnalyzer.

Definition at line 173 of file EcalPreshowerMonitorClient.cc.

References gather_cfg::cout, and i.

173  {
174 
175  if(debug_){
176  cout << "EcalPreshowerMonitorClient: endRun, jevt = " << jevt_ << endl;
177  }
178 
179  begin_run_ = false;
180  end_run_ = true;
181 
182  for ( unsigned int i=0; i<clients_.size(); i++ ) {
183  clients_[i]->analyze();
184  clients_[i]->endRun();
185  }
186 
187 }
std::vector< ESClient * > clients_
int i
Definition: DBlmapReader.cc:9
tuple cout
Definition: gather_cfg.py:121
void EcalPreshowerMonitorClient::htmlOutput ( int  run)
private

Definition at line 224 of file EcalPreshowerMonitorClient.cc.

References sistrip::extrainfo::gain_, i, j, and sistrip::layer_.

224  {
225 
226  //Change runNum_ into run by Yeong-jyi
227 
228  string border[2][10] = {
229  {"style=\"border-top:solid white; border-left:solid white; border-bottom:solid white; border-right:solid white; border-width:1\"",
230  "style=\"border-top:solid black; border-left:solid black; border-bottom:solid white; border-right:solid white; border-width:1\"",
231  "style=\"border-top:solid black; border-left:solid white; border-bottom:solid white; border-right:solid black; border-width:1\"",
232  "style=\"border-top:solid white; border-left:solid black; border-bottom:solid white; border-right:solid white; border-width:1\"",
233  "style=\"border-top:solid white; border-left:solid white; border-bottom:solid white; border-right:solid black; border-width:1\"",
234  "style=\"border-top:solid black; border-left:solid black; border-bottom:solid white; border-right:solid black; border-width:1\"",
235  "style=\"border-top:solid white; border-left:solid black; border-bottom:solid black; border-right:solid black; border-width:1\"",
236  "style=\"border-top:solid white; border-left:solid black; border-bottom:solid black; border-right:solid white; border-width:1\"",
237  "style=\"border-top:solid white; border-left:solid white; border-bottom:solid black; border-right:solid black; border-width:1\"",
238  "style=\"border-top:solid white; border-left:solid black; border-bottom:solid white; border-right:solid black; border-width:1\""},
239 
240  {"style=\"border-top:solid white; border-left:solid white; border-bottom:solid white; border-right:solid white; border-width:1\"",
241  "style=\"border-top:solid black; border-left:solid black; border-bottom:solid white; border-right:solid white; border-width:1\"",
242  "style=\"border-top:solid black; border-left:solid white; border-bottom:solid white; border-right:solid black; border-width:1\"",
243  "style=\"border-top:solid black; border-left:solid white; border-bottom:solid white; border-right:solid white; border-width:1\"",
244  "style=\"border-top:solid white; border-left:solid white; border-bottom:solid black; border-right:solid white; border-width:1\"",
245  "style=\"border-top:solid black; border-left:solid black; border-bottom:solid black; border-right:solid white; border-width:1\"",
246  "style=\"border-top:solid black; border-left:solid white; border-bottom:solid black; border-right:solid black; border-width:1\"",
247  "style=\"border-top:solid white; border-left:solid black; border-bottom:solid black; border-right:solid white; border-width:1\"",
248  "style=\"border-top:solid white; border-left:solid white; border-bottom:solid black; border-right:solid black; border-width:1\"",
249  "style=\"border-top:solid black; border-left:solid white; border-bottom:solid black; border-right:solid white; border-width:1\""}
250  };
251 
252  int iborder[2][40][40] = {
253  {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
254  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
255  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
256  {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0},
257  {0, 0, 0, 0, 0, 0, 0, 1, 2, 3, 4, 3, 4, 3, 4, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 3, 4, 3, 4, 3, 4, 1, 2, 0, 0, 0, 0, 0, 0, 0},
258  {0, 0, 0, 0, 0, 0, 0, 3, 4, 7, 8, 3, 4, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 3, 4, 7, 8, 3, 4, 0, 0, 0, 0, 0, 0, 0},
259  {0, 0, 0, 0, 0, 0, 5, 3, 4, 1, 2, 7, 8, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 7, 8, 1, 2, 3, 4, 5, 0, 0, 0, 0, 0, 0},
260  {0, 0, 0, 0, 0, 1, 4, 7, 8, 3, 4, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 3, 4, 7, 8, 3, 2, 0, 0, 0, 0, 0},
261  {0, 0, 0, 0, 5, 3, 4, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 3, 4, 5, 0, 0, 0, 0},
262  {0, 0, 0, 1, 4, 7, 8, 3, 4, 3, 4, 3, 4, 7, 8, 7, 8, 7, 8, 1, 2, 7, 8, 7, 8, 7, 8, 3, 4, 3, 4, 3, 4, 7, 8, 3, 2, 0, 0, 0},
263  {0, 0, 0, 3, 4, 1, 2, 3, 4, 7, 8, 3, 4, 1, 2, 1, 2, 3, 4, 3, 4, 1, 2, 1, 2, 3, 4, 3, 4, 7, 8, 3, 4, 1, 2, 3, 4, 0, 0, 0},
264  {0, 0, 0, 7, 8, 3, 4, 7, 8, 1, 2, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 1, 2, 7, 8, 3, 4, 7, 8, 0, 0, 0},
265  {0, 0, 5, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 3, 4, 3, 8, 7, 8, 7, 4, 3, 4, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 1, 2, 5, 0, 0},
266  {0, 0, 9, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 3, 8, 6, 0, 0, 0, 0, 6, 7, 4, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 9, 0, 0},
267  {0, 1, 4, 3, 4, 7, 8, 3, 4, 3, 4, 3, 4, 1, 2, 6, 0, 0, 0, 0, 0, 0, 0, 0, 6, 1, 2, 3, 4, 3, 4, 3, 4, 7, 8, 3, 4, 3, 2, 0},
268  {0, 7, 8, 7, 8, 1, 2, 7, 8, 7, 8, 7, 8, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 7, 8, 7, 8, 7, 8, 1, 2, 7, 8, 7, 8, 0},
269  {0, 1, 2, 1, 2, 3, 4, 1, 2, 1, 2, 1, 2, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 1, 2, 1, 2, 1, 2, 3, 4, 1, 2, 1, 2, 0},
270  {0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0},
271  {0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0},
272  {0, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 0}, //
273  {0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 0}, //
274  {0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0},
275  {0, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 5, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 0},
276  {0, 7, 8, 7, 8, 3, 4, 7, 8, 7, 8, 7, 8, 9, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 9, 7, 8, 7, 8, 7, 8, 3, 4, 7, 8, 7, 8, 0},
277  {0, 1, 2, 1, 2, 7, 8, 1, 2, 1, 2, 1, 2, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 4, 1, 2, 1, 2, 1, 2, 7, 8, 1, 2, 1, 2, 0},
278  {0, 7, 4, 3, 4, 1, 2, 3, 4, 3, 4, 3, 4, 7, 8, 5, 0, 0, 0, 0, 0, 0, 0, 0, 5, 7, 8, 3, 4, 3, 4, 3, 4, 1, 2, 3, 4, 3, 8, 0},
279  {0, 0, 9, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 3, 2, 5, 0, 0, 0, 0, 5, 1, 4, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 9, 0, 0},
280  {0, 0, 6, 7, 8, 3, 4, 7, 8, 3, 4, 7, 8, 3, 4, 3, 4, 3, 2, 1, 2, 1, 4, 3, 4, 3, 4, 7, 8, 3, 4, 7, 8, 3, 4, 7, 8, 6, 0, 0},
281  {0, 0, 0, 1, 2, 3, 4, 1, 2, 7, 8, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 7, 8, 1, 2, 3, 4, 1, 2, 0, 0, 0},
282  {0, 0, 0, 3, 4, 7, 8, 3, 4, 1, 2, 3, 4, 7, 8, 7, 8, 3, 4, 3, 4, 7, 8, 7, 8, 3, 4, 3, 4, 1, 2, 3, 4, 7, 8, 3, 4, 0, 0, 0},
283  {0, 0, 0, 7, 4, 1, 2, 3, 4, 3, 4, 3, 4, 1, 2, 1, 2, 1, 2, 7, 8, 1, 2, 1, 2, 1, 2, 3, 4, 3, 4, 3, 4, 1, 2, 3, 8, 0, 0, 0},
284  {0, 0, 0, 0, 6, 3, 4, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 3, 4, 6, 0, 0, 0, 0},
285  {0, 0, 0, 0, 0, 7, 4, 1, 2, 3, 4, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 3, 4, 1, 2, 3, 8, 0, 0, 0, 0, 0},
286  {0, 0, 0, 0, 0, 0, 6, 3, 4, 7, 8, 1, 2, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 1, 2, 7, 8, 3, 4, 6, 0, 0, 0, 0, 0, 0},
287  {0, 0, 0, 0, 0, 0, 0, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 1, 2, 3, 4, 1, 2, 3, 4, 0, 0, 0, 0, 0, 0, 0},
288  {0, 0, 0, 0, 0, 0, 0, 7, 8, 3, 4, 3, 4, 3, 4, 1, 2, 1, 2, 1, 2, 1, 2, 1, 2, 3, 4, 3, 4, 3, 4, 7, 8, 0, 0, 0, 0, 0, 0, 0},
289  {0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0},
290  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 6, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
291  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 3, 4, 3, 4, 3, 4, 3, 4, 3, 4, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
292  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 8, 7, 8, 7, 8, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}},
293 
294  {{0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
295  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
296  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
297  {0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0},
298  {0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0},
299  {0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0},
300  {0, 0, 0, 0, 0, 0, 5, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 6, 0, 0, 0, 0, 0, 0},
301  {0, 0, 0, 0, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 0, 0, 0, 0},
302  {0, 0, 0, 0, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 0, 0, 0, 0},
303  {0, 0, 0, 1, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 2, 0, 0, 0},
304  {0, 0, 5, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 6, 0, 0},
305  {0, 0, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 0, 0},
306  {0, 0, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 0, 0},
307  {0, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 9, 6, 0, 0, 0, 0, 5, 9, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 0},
308  {0, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 0},
309  {1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2},
310  {7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8},
311  {1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2},
312  {7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8},
313  {1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2}, //
314  {7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8}, //
315  {1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2},
316  {7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8},
317  {1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 2, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 1, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2},
318  {7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8},
319  {0, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 2, 0, 0, 0, 0, 0, 0, 0, 0, 1, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 0},
320  {0, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 9, 6, 0, 0, 0, 0, 5, 9, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 0},
321  {0, 0, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 0, 0},
322  {0, 0, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 0, 0},
323  {0, 0, 5, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 6, 0, 0},
324  {0, 0, 0, 7, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 8, 0, 0, 0},
325  {0, 0, 0, 0, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 0, 0, 0, 0},
326  {0, 0, 0, 0, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 0, 0, 0, 0},
327  {0, 0, 0, 0, 0, 0, 5, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 3, 2, 1, 3, 3, 6, 0, 0, 0, 0, 0, 0},
328  {0, 0, 0, 0, 0, 0, 0, 7, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 4, 4, 8, 7, 4, 8, 0, 0, 0, 0, 0, 0, 0},
329  {0, 0, 0, 0, 0, 0, 0, 0, 5, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 3, 6, 0, 0, 0, 0, 0, 0, 0, 0},
330  {0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 4, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0},
331  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 5, 9, 3, 2, 1, 3, 3, 2, 1, 3, 3, 2, 1, 3, 9, 6, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
332  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 7, 8, 7, 4, 4, 8, 7, 4, 4, 8, 7, 8, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0},
333  {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}
334  }
335  };
336 
337  // Make HTML
338  if (runtype_ ==3) {
339 
340  Char_t run_s[50];
341  sprintf(run_s, "/var/www/html/DQM/%08d", run);
342  string htmlDir = run_s;
343  system(("/bin/mkdir -m 777 -p " + htmlDir).c_str());
344  sprintf(run_s, "/var/www/html/DQM/%08d/gif", run);
345  string gifDir = run_s;
346  system(("/bin/mkdir -m 777 -p " + gifDir).c_str());
347  ofstream htmlFile;
348  htmlFile.open((htmlDir+"/index.html").c_str(), ios::app);
349 
350  // Start to display ES planes
351  int iquad_M[2][40] = {{ 5, 7, 10, 11, 13, 13, 14, 15, 16, 17,
352  17, 17, 18, 18, 19, 19, 19, 19, 19, 19,
353  19, 19, 19, 19, 19, 19, 18, 18, 17, 17,
354  17, 16, 15, 14, 13, 13, 11, 10, 7, 5},
355  { 0, 6, 8, 11, 12, 13, 14, 16, 16, 17,
356  18, 18, 18, 19, 19, 20, 20, 20, 20, 20,
357  20, 20, 20, 20, 20, 19, 19, 18, 18, 18,
358  17, 16, 16, 14, 13, 12, 11, 8, 6, 0}
359  };
360  int iquad_m[2][40] = {{1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
361  1, 1, 1, 3, 5, 6, 7, 7, 8, 8,
362  8, 8, 7, 7, 6, 5, 3, 1, 1, 1,
363  1, 1, 1, 1, 1, 1, 1, 1, 1, 1},
364  {1, 1, 1, 1, 1, 1, 1, 1, 1, 1,
365  1, 1, 1, 3, 5, 6, 7, 7, 8, 8,
366  8, 8, 7, 7, 6, 5, 3, 1, 1, 1,
367  1, 1, 1, 1, 1, 1, 1, 1, 1, 1}
368  };
369 
370  htmlFile << "<table border=\"0\" bordercolor=\"white\" cellspacing=\"0\" style=\"float: left;\">" << endl;
371  htmlFile << "<tr align=\"center\">" << endl;
372  if (layer_==1) htmlFile << "<td colspan=\"40\"> ES- F <a href=\"../plotAll.php?run="<<run<<"&type="<<runtype_<<"\">(summary plots)</a></td>" << endl;
373  else if (layer_==1) htmlFile << "<td colspan=\"40\"> ES- R <a href=\"../plotAll.php?run="<<run<<"&type="<<runtype_<<"\">(summary plots)</a></td>" << endl;
374 
375  //string color[6] = {"#C0C0C0", "#00FF00", "#FFFF00", "#F87217", "#FF0000", "#0000FF"};
376  for (int i=0; i<40; ++i) {
377  htmlFile << "<tr>" << endl;
378  for (int j=0; j<40; ++j) {
379  if ((iquad_m[layer_-1][i]-1) == 0) {
380  if (j<=(19-iquad_M[layer_-1][i]) || j>(19+iquad_M[layer_-1][i]))
381  htmlFile << "<td "<<border[layer_-1][iborder[layer_-1][i][j]]<<" > <img src=\"../0.png\" width=12 height=12 border=0> </img></td>" << endl;
382  else {
383  htmlFile << "<td "<<border[layer_-1][iborder[layer_-1][i][j]]<<" ><a href=\"../plot.php?run="<<run<<"&type="<<runtype_<<"&iz="<<senZ_[0]<<"&ip="<<senP_[0]<<"&ix="<<j+1<<"&iy="<<39-i+1<<"&gain="<<gain_<<"&prec="<<precision_<<"\" STYLE=\"text-decoration:none\" target=_blank><img src=\"../"<< qt[j][39-i]<<".png\" width=12 height=12 border=0></img></a></td>" << endl;
384  }
385  } else {
386  if (j>=(19-iquad_m[layer_-1][i]+2) && j<=(19+iquad_m[layer_-1][i]-1))
387  htmlFile << "<td "<<border[layer_-1][iborder[layer_-1][i][j]]<<" > <img src=\"../0.png\" width=12 height=12 border=0> </img></td>" << endl;
388  else if (j<=(19-iquad_M[layer_-1][i]) || j>(19+iquad_M[layer_-1][i]))
389  htmlFile << "<td "<<border[layer_-1][iborder[layer_-1][i][j]]<<" > <img src=\"../0.png\" width=12 height=12 border=0> </img></td>" << endl;
390  else {
391  htmlFile << "<td "<<border[layer_-1][iborder[layer_-1][i][j]]<<" ><a href=\"../plot.php?run="<<run<<"&type="<<runtype_<<"&iz="<<senZ_[0]<<"&ip="<<senP_[0]<<"&ix="<<j+1<<"&iy="<<39-i+1<<"&gain="<<gain_<<"&prec="<<precision_<<"\" STYLE=\"text-decoration:none\" target=_blank><img src=\"../"<< qt[j][39-i]<<".png\" width=12 height=12 border=0></img></a></td>" << endl;
392  }
393  }
394  }
395  htmlFile << "</tr>" <<endl;
396  }
397  htmlFile << "</table>" <<endl;
398  htmlFile << "<table border=\"1\">" <<endl;
399  if (runtype_==3) {
400  htmlFile << "<tr><td><img src=\"../2.png\" width=20 height=20 border=0> this sensor is not used for injection </img></td></tr>" << endl;
401  htmlFile << "<tr><td><img src=\"../1.png\" width=20 height=20 border=0> the injection result for this sensor is OK </img></td></tr>" << endl;
402  htmlFile << "<tr><td><img src=\"../4.png\" width=20 height=20 border=0> at least one strip has signal 10% higher than average </img></td></tr>" <<endl;
403  htmlFile << "<tr><td><img src=\"../3.png\" width=20 height=20 border=0> at least one strip has signal 10% lower than average </img></td></tr>" <<endl;
404  htmlFile << "<tr><td><img src=\"../7.png\" width=20 height=20 border=0> all strips have signal lower than "<< qtCriteria<<" ADC </img></td></tr>" <<endl;
405  htmlFile << "<tr><td><img src=\"../6.png\" width=20 height=20 border=0> the order of time sample is wrong </img></td></tr>" <<endl;
406  htmlFile << "<tr><td><img src=\"../5.png\" width=20 height=20 border=0> this sensor is used for data-taking, but does not deliver data </img></td></tr>" <<endl;
407  }
408  htmlFile << "</table>" <<endl;
409  htmlFile << "</body> " << endl;
410  htmlFile << "</html> " << endl;
411 
412  htmlFile.close();
413  }
414 }
int i
Definition: DBlmapReader.cc:9
int j
Definition: DBlmapReader.cc:9

Member Data Documentation

bool EcalPreshowerMonitorClient::begin_run_
private

Definition at line 44 of file EcalPreshowerMonitorClient.h.

std::vector<ESClient*> EcalPreshowerMonitorClient::clients_
private

Definition at line 54 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::dac_
private

Definition at line 57 of file EcalPreshowerMonitorClient.h.

bool EcalPreshowerMonitorClient::debug_
private

Definition at line 46 of file EcalPreshowerMonitorClient.h.

DQMStore* EcalPreshowerMonitorClient::dqmStore_
private

Definition at line 42 of file EcalPreshowerMonitorClient.h.

std::vector<std::string> EcalPreshowerMonitorClient::enabledClients_
private

Definition at line 53 of file EcalPreshowerMonitorClient.h.

bool EcalPreshowerMonitorClient::end_run_
private

Definition at line 45 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::firstDAC_
private

Definition at line 58 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::gain_
private

Definition at line 57 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::ievt_
private

Definition at line 50 of file EcalPreshowerMonitorClient.h.

std::string EcalPreshowerMonitorClient::inputFile_
private

Definition at line 39 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::isPed_
private

Definition at line 58 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::jevt_
private

Definition at line 51 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::layer_
private

Definition at line 58 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::nDAC_
private

Definition at line 58 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::nLines_
private

Definition at line 56 of file EcalPreshowerMonitorClient.h.

std::string EcalPreshowerMonitorClient::outputFile_
private

Definition at line 38 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::precision_
private

Definition at line 57 of file EcalPreshowerMonitorClient.h.

std::string EcalPreshowerMonitorClient::prefixME_
private

Definition at line 40 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::prescaleFactor_
private

Definition at line 49 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::qt[40][40]
private

Definition at line 61 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::qtCriteria
private

Definition at line 61 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::runNum_
private

Definition at line 56 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::runtype_
private

Definition at line 57 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::senP_[4288]
private

Definition at line 60 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::senX_[4288]
private

Definition at line 60 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::senY_[4288]
private

Definition at line 60 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::senZ_[4288]
private

Definition at line 60 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::seqtype_
private

Definition at line 57 of file EcalPreshowerMonitorClient.h.

int EcalPreshowerMonitorClient::vDAC_[5]
private

Definition at line 58 of file EcalPreshowerMonitorClient.h.

bool EcalPreshowerMonitorClient::verbose_
private

Definition at line 47 of file EcalPreshowerMonitorClient.h.