CMS 3D CMS Logo

RctDigiToRctText.cc
Go to the documentation of this file.
1 
2 #include "RctDigiToRctText.h"
3 #include <iomanip>
4 
5 using std::dec;
6 using std::endl;
7 using std::hex;
8 using std::setfill;
9 using std::setw;
10 
12  : m_rctInputLabel(iConfig.getParameter<edm::InputTag>("RctInputLabel")),
13  m_textFileName(iConfig.getParameter<std::string>("TextFileName")),
14  m_hexUpperCase(iConfig.getParameter<bool>("HexUpperCase")) {
16  for (unsigned i = 0; i < NUM_RCT_CRATES; i++) {
17  std::stringstream fileStream;
18  fileStream << m_textFileName << std::setw(2) << std::setfill('0') << i << ".txt";
19  std::string fileName(fileStream.str());
20  m_file[i].open(fileName.c_str(), std::ios::out);
21 
22  if (!m_file[i].good()) {
23  throw cms::Exception("RctDigiToRctTextTextFileOpenError")
24  << "RctDigiToRctText::RctDigiToRctText : "
25  << " couldn't create the file " << fileName << std::endl;
26  }
27  }
28 
30  fdebug.open("rctdigitorcttext_debug.txt", std::ios::out);
31 }
32 
35  for (unsigned i = 0; i < NUM_RCT_CRATES; i++)
36  m_file[i].close();
37  fdebug.close();
38 }
39 
42  nevt++;
43 
47  iEvent.getByLabel(m_rctInputLabel, em);
48  iEvent.getByLabel(m_rctInputLabel, rgn);
49 
51  bool ldebug = false;
52  bool debug_NOTEMPTY[18] = {false};
53  for (int i = 0; i < 18; i++)
54  debug_NOTEMPTY[i] = false;
55  std::stringstream dstrm;
56 
58 
59  unsigned long int CAND[18][8];
60  int n_iso[18] = {0};
61  int n_niso[18] = {0};
62  bool iso;
63  int id;
64 
65  for (L1CaloEmCollection::const_iterator iem = em->begin(); iem != em->end(); iem++) {
66  int crate = iem->rctCrate();
67  iso = iem->isolated();
68  unsigned data = iem->raw();
69 
70  id = iso ? n_iso[crate]++ : 4 + n_niso[crate]++;
71 
72  CAND[crate][id] = data;
73 
75  if (crate > 17 || id > 7)
76  throw cms::Exception("RctDigiToRctTextElectronIndexOutBounds")
77  << "out of bounds indices crate:" << crate << "id:" << id << std::endl;
78  if (ldebug && data != 0)
79  debug_NOTEMPTY[crate] = true;
80  dstrm.str("");
81  dstrm << "electron "
82  << " bx:" << nevt << " crate:" << crate << " iso:" << iso << " raw:" << data << " \t cand:" << *iem;
83  if (debug_NOTEMPTY[crate])
84  fdebug << dstrm.str() << std::endl;
85  }
86 
88 
89  unsigned short MIPbits[18][7][2] = {{{0}}};
90  unsigned short QIEbits[18][7][2] = {{{0}}};
91  unsigned short RC[18][7][2] = {{{0}}};
92  unsigned short RCof[18][7][2] = {{{0}}};
93  unsigned short RCtau[18][7][2] = {{{0}}};
94  unsigned short HF[18][4][2] = {{{0}}};
95 
96  for (L1CaloRegionCollection::const_iterator irgn = rgn->begin(); irgn != rgn->end(); irgn++) {
97  int crate = irgn->rctCrate();
98  int card = irgn->rctCard();
99  int rgnidx = irgn->rctRegionIndex();
100 
101  dstrm.str("");
102  if (!irgn->id().isHf()) {
103  RC[crate][card][rgnidx] = irgn->et();
104  RCof[crate][card][rgnidx] = irgn->overFlow();
105  RCtau[crate][card][rgnidx] = irgn->tauVeto();
106  MIPbits[crate][card][rgnidx] = irgn->mip();
107  QIEbits[crate][card][rgnidx] = irgn->quiet();
108  // debug info
109  dstrm << hex << "Et=" << irgn->et() << " OverFlow=" << irgn->overFlow() << " tauVeto=" << irgn->tauVeto()
110  << " mip=" << irgn->mip() << " quiet=" << irgn->quiet() << " Card=" << irgn->rctCard()
111  << " Region=" << irgn->rctRegionIndex() << " Crate=" << irgn->rctCrate() << dec;
112  if (ldebug)
113  LogDebug("Regions") << dstrm.str();
114  } else {
115  HF[crate][irgn->id().rctEta() - 7][irgn->id().rctPhi()] = irgn->et();
116  // debug info
117  dstrm << hex << "Et=" << irgn->et() << " FGrain=" << irgn->fineGrain() << " Eta=" << irgn->id().rctEta()
118  << " Phi=" << irgn->id().rctPhi() << " Crate=" << irgn->rctCrate() << dec;
119  if (ldebug)
120  LogDebug("HFRegions") << dstrm.str();
121  }
122 
123  if (ldebug && irgn->et() != 0)
124  debug_NOTEMPTY[crate] = true; // debug
125  if (debug_NOTEMPTY[crate]) {
126  fdebug << "region"
127  << " bx:" << nevt << " crate:" << crate << "\t";
128  fdebug << dstrm.str() << std::endl;
129  }
130  }
131 
132  std::stringstream sstrm;
133  if (m_hexUpperCase)
134  sstrm << std::uppercase;
135  else
136  sstrm.unsetf(std::ios::uppercase);
137 
139 
140  for (unsigned crate = 0; crate < NUM_RCT_CRATES; crate++) {
141  sstrm.str("");
142  sstrm << "Crossing " << nevt << std::endl;
143 
144  for (int j = 0; j < 8; j++) {
145  sstrm << setw(3) << setfill('0') << hex << (CAND[crate][j] & 0x3ff);
146  if (j < 7)
147  sstrm << " ";
148  }
149  sstrm << setfill(' ') << dec;
150  m_file[crate] << sstrm.str() << std::endl;
151 
152  // debug
153  if (debug_NOTEMPTY[crate])
154  fdebug << sstrm.str() << std::endl;
155  if (ldebug)
156  LogDebug("Electrons") << sstrm.str() << std::endl;
157  }
158 
160 
161  for (unsigned crate = 0; crate < NUM_RCT_CRATES; crate++) {
163  sstrm.str("");
164  for (int card = 0; card < 7; card++) {
165  for (int j = 0; j < 2; j++) {
166  sstrm << " " << MIPbits[crate][card][j];
167  }
168  }
169  m_file[crate] << sstrm.str() << std::endl;
170  if (debug_NOTEMPTY[crate])
171  fdebug << sstrm.str() << std::endl; // debug
172 
174  sstrm.str("");
175  for (int card = 0; card < 7; card++) {
176  for (int j = 0; j < 2; j++) {
177  sstrm << " " << QIEbits[crate][card][j];
178  }
179  }
180  m_file[crate] << sstrm.str() << std::endl;
181  if (debug_NOTEMPTY[crate])
182  fdebug << sstrm.str() << std::endl; // debug
183 
185  sstrm.str("");
186  for (int card = 0; card < 7; card++) {
187  for (int j = 0; j < 2; j++) {
188  unsigned long int tmp;
189  unsigned et = RC[crate][card][j];
190  unsigned ovf = RCof[crate][card][j];
191  unsigned tau = RCtau[crate][card][j];
192  // ovf = ovf || (et>=0x400);
193  tmp = ((tau & 0x1) << 11) | ((ovf & 0x1) << 10) | ((et & 0x3ff));
194  sstrm << " " << setw(3) << setfill('0') << hex << tmp;
195  }
196  }
197  m_file[crate] << sstrm.str() << std::endl;
198  if (debug_NOTEMPTY[crate])
199  fdebug << sstrm.str() << std::endl << std::endl; // debug
200 
202  sstrm.str("");
203  for (int ip = 0; ip < 2; ip++) {
204  for (int ie = 0; ie < 4; ie++) {
205  unsigned et = HF[crate][ie][ip] & 0xff;
206  sstrm << " " << setw(2) << setfill('0') << hex << et;
207  }
208  }
209  m_file[crate] << sstrm.str() << std::endl;
210  if (debug_NOTEMPTY[crate])
211  fdebug << sstrm.str() << std::endl; // debug
212  sstrm << setfill(' ') << dec;
213 
214  } // end crate loop
215 
217  for (unsigned i = 0; i < NUM_RCT_CRATES; i++)
218  m_file[i] << std::flush;
219 
220  fdebug << std::flush;
221 }
static const unsigned NUM_RCT_CRATES
bool m_hexUpperCase
write upper case hex words
edm::InputTag m_rctInputLabel
label for RCT digis
int iEvent
Definition: GenABIO.cc:224
void analyze(const edm::Event &, const edm::EventSetup &) override
std::ofstream m_file[NUM_RCT_CRATES]
handles for output files
~RctDigiToRctText() override
RctDigiToRctText(const edm::ParameterSet &)
std::string m_textFileName
basename for output files
HLT enums.
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
tmp
align.sh
Definition: createJobs.py:716
std::ofstream fdebug
handle for debug file
#define LogDebug(id)