CMS 3D CMS Logo

CSCBadWiresConditions.h
Go to the documentation of this file.
1 #ifndef _CSCBADWIRESCONDITIONS_H
2 #define _CSCBADWIRESCONDITIONS_H
3 
13 #include <cmath>
14 #include <memory>
15 
19 
21 public:
23  ~CSCBadWiresConditions() override;
24 
25  inline static CSCBadWires *prefillBadWires();
26 
27  typedef std::unique_ptr<CSCBadWires> ReturnType;
28 
30 
31 private:
32  // ----------member data ---------------------------
34  const edm::IOVSyncValue &,
35  edm::ValidityInterval &) override;
37 };
38 
39 #include <fstream>
40 #include <iostream>
41 #include <vector>
42 
43 // to workaround plugin library
45  CSCBadWires *cndbbadwires = new CSCBadWires();
46 
47  int new_index, new_chan;
48  int new_layer, new_channel, new_flag1, new_flag2, new_flag3, new_pointer;
49  std::vector<int> new_index_id;
50  std::vector<short int> new_layer_id;
51  std::vector<short int> new_chan_id;
52  std::vector<int> new_badchannels;
53  std::vector<short int> new_flag1_id;
54  std::vector<short int> new_flag2_id;
55  std::vector<short int> new_flag3_id;
56  std::vector<int> new_cham_id;
57  std::vector<int> new_point;
58 
59  // when bad channels exist use the following
60  int new_nrlines1 = 0;
61  int new_nrlines2 = 0;
62  // when empty
63  // int new_nrlines1=-1;
64  // int new_nrlines2=-1;
65 
66  std::ifstream newdata1;
67  std::ifstream newdata2;
68 
69  newdata1.open("badwires1.dat", std::ios::in);
70  if (!newdata1) {
71  std::cerr << "Error: badwires1.dat -> no such file!" << std::endl;
72  exit(1);
73  }
74  newdata2.open("badwires2.dat", std::ios::in); // channelcontainer
75  if (!newdata2) {
76  std::cerr << "Error: badwires2.dat -> no such file!" << std::endl;
77  exit(1);
78  }
79 
80  while (!newdata1.eof()) {
81  newdata1 >> new_index >> new_pointer >> new_chan;
82  new_index_id.push_back(new_index);
83  new_point.push_back(new_pointer);
84  new_badchannels.push_back(new_chan);
85  new_nrlines1++;
86  }
87  newdata1.close();
88 
89  while (!newdata2.eof()) {
90  newdata2 >> new_layer >> new_channel >> new_flag1 >> new_flag2 >> new_flag3;
91  new_layer_id.push_back(new_layer);
92  new_chan_id.push_back(new_channel);
93  new_flag1_id.push_back(new_flag1);
94  new_flag2_id.push_back(new_flag2);
95  new_flag3_id.push_back(new_flag3);
96  new_nrlines2++;
97  }
98  newdata2.close();
99 
100  CSCBadWires::BadChamberContainer &itemvector1 = cndbbadwires->chambers;
101  itemvector1.resize(new_nrlines1);
102 
103  CSCBadWires::BadChannelContainer &itemvector2 = cndbbadwires->channels;
104  itemvector2.resize(new_nrlines2);
105 
106  cndbbadwires->numberOfBadChannels = new_nrlines2;
107 
108  for (int i = 0; i < new_nrlines1; i++) {
109  itemvector1[i].chamber_index = new_index_id[i];
110  itemvector1[i].pointer = new_point[i];
111  itemvector1[i].bad_channels = new_badchannels[i];
112  }
113 
114  for (int j = 0; j < new_nrlines2; ++j) {
115  itemvector2[j].layer = new_layer_id[j];
116  itemvector2[j].channel = new_chan_id[j];
117  itemvector2[j].flag1 = new_flag1_id[j];
118  itemvector2[j].flag2 = new_flag2_id[j];
119  itemvector2[j].flag3 = new_flag3_id[j];
120  }
121 
122  return cndbbadwires;
123 }
124 
125 #endif
std::vector< BadChamber > BadChamberContainer
Definition: CSCBadWires.h:32
static CSCBadWires * prefillBadWires()
void setIntervalFor(const edm::eventsetup::EventSetupRecordKey &, const edm::IOVSyncValue &, edm::ValidityInterval &) override
BadChamberContainer chambers
Definition: CSCBadWires.h:35
CSCBadWiresConditions(const edm::ParameterSet &)
ReturnType produceBadWires(const CSCBadWiresRcd &)
BadChannelContainer channels
Definition: CSCBadWires.h:36
int numberOfBadChannels
Definition: CSCBadWires.h:30
std::vector< BadChannel > BadChannelContainer
Definition: CSCBadWires.h:33
std::unique_ptr< CSCBadWires > ReturnType
def exit(msg="")