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  static int nevt = -1;
43  nevt++;
44 
48  iEvent.getByLabel(m_rctInputLabel, em);
49  iEvent.getByLabel(m_rctInputLabel, rgn);
50 
52  bool ldebug = false;
53  bool debug_NOTEMPTY[18] = {false};
54  for (int i = 0; i < 18; i++)
55  debug_NOTEMPTY[i] = false;
56  std::stringstream dstrm;
57 
59 
60  unsigned long int CAND[18][8];
61  int n_iso[18] = {0};
62  int n_niso[18] = {0};
63  bool iso;
64  int id;
65 
66  for (L1CaloEmCollection::const_iterator iem = em->begin(); iem != em->end(); iem++) {
67  int crate = iem->rctCrate();
68  iso = iem->isolated();
69  unsigned data = iem->raw();
70 
71  id = iso ? n_iso[crate]++ : 4 + n_niso[crate]++;
72 
73  CAND[crate][id] = data;
74 
76  if (crate > 17 || id > 7)
77  throw cms::Exception("RctDigiToRctTextElectronIndexOutBounds")
78  << "out of bounds indices crate:" << crate << "id:" << id << std::endl;
79  if (ldebug && data != 0)
80  debug_NOTEMPTY[crate] = true;
81  dstrm.str("");
82  dstrm << "electron "
83  << " bx:" << nevt << " crate:" << crate << " iso:" << iso << " raw:" << data << " \t cand:" << *iem;
84  if (debug_NOTEMPTY[crate])
85  fdebug << dstrm.str() << std::endl;
86  }
87 
89 
90  unsigned short MIPbits[18][7][2] = {{{0}}};
91  unsigned short QIEbits[18][7][2] = {{{0}}};
92  unsigned short RC[18][7][2] = {{{0}}};
93  unsigned short RCof[18][7][2] = {{{0}}};
94  unsigned short RCtau[18][7][2] = {{{0}}};
95  unsigned short HF[18][4][2] = {{{0}}};
96 
97  for (L1CaloRegionCollection::const_iterator irgn = rgn->begin(); irgn != rgn->end(); irgn++) {
98  int crate = irgn->rctCrate();
99  int card = irgn->rctCard();
100  int rgnidx = irgn->rctRegionIndex();
101 
102  dstrm.str("");
103  if (!irgn->id().isHf()) {
104  RC[crate][card][rgnidx] = irgn->et();
105  RCof[crate][card][rgnidx] = irgn->overFlow();
106  RCtau[crate][card][rgnidx] = irgn->tauVeto();
107  MIPbits[crate][card][rgnidx] = irgn->mip();
108  QIEbits[crate][card][rgnidx] = irgn->quiet();
109  // debug info
110  dstrm << hex << "Et=" << irgn->et() << " OverFlow=" << irgn->overFlow() << " tauVeto=" << irgn->tauVeto()
111  << " mip=" << irgn->mip() << " quiet=" << irgn->quiet() << " Card=" << irgn->rctCard()
112  << " Region=" << irgn->rctRegionIndex() << " Crate=" << irgn->rctCrate() << dec;
113  if (ldebug)
114  LogDebug("Regions") << dstrm.str();
115  } else {
116  HF[crate][irgn->id().rctEta() - 7][irgn->id().rctPhi()] = irgn->et();
117  // debug info
118  dstrm << hex << "Et=" << irgn->et() << " FGrain=" << irgn->fineGrain() << " Eta=" << irgn->id().rctEta()
119  << " Phi=" << irgn->id().rctPhi() << " Crate=" << irgn->rctCrate() << dec;
120  if (ldebug)
121  LogDebug("HFRegions") << dstrm.str();
122  }
123 
124  if (ldebug && irgn->et() != 0)
125  debug_NOTEMPTY[crate] = true; // debug
126  if (debug_NOTEMPTY[crate]) {
127  fdebug << "region"
128  << " bx:" << nevt << " crate:" << crate << "\t";
129  fdebug << dstrm.str() << std::endl;
130  }
131  }
132 
133  std::stringstream sstrm;
134  if (m_hexUpperCase)
135  sstrm << std::uppercase;
136  else
137  sstrm.unsetf(std::ios::uppercase);
138 
140 
141  for (unsigned crate = 0; crate < NUM_RCT_CRATES; crate++) {
142  sstrm.str("");
143  sstrm << "Crossing " << nevt << std::endl;
144 
145  for (int j = 0; j < 8; j++) {
146  sstrm << setw(3) << setfill('0') << hex << (CAND[crate][j] & 0x3ff);
147  if (j < 7)
148  sstrm << " ";
149  }
150  sstrm << setfill(' ') << dec;
151  m_file[crate] << sstrm.str() << std::endl;
152 
153  // debug
154  if (debug_NOTEMPTY[crate])
155  fdebug << sstrm.str() << std::endl;
156  if (ldebug)
157  LogDebug("Electrons") << sstrm.str() << std::endl;
158  }
159 
161 
162  for (unsigned crate = 0; crate < NUM_RCT_CRATES; crate++) {
164  sstrm.str("");
165  for (int card = 0; card < 7; card++) {
166  for (int j = 0; j < 2; j++) {
167  sstrm << " " << MIPbits[crate][card][j];
168  }
169  }
170  m_file[crate] << sstrm.str() << std::endl;
171  if (debug_NOTEMPTY[crate])
172  fdebug << sstrm.str() << std::endl; // debug
173 
175  sstrm.str("");
176  for (int card = 0; card < 7; card++) {
177  for (int j = 0; j < 2; j++) {
178  sstrm << " " << QIEbits[crate][card][j];
179  }
180  }
181  m_file[crate] << sstrm.str() << std::endl;
182  if (debug_NOTEMPTY[crate])
183  fdebug << sstrm.str() << std::endl; // debug
184 
186  sstrm.str("");
187  for (int card = 0; card < 7; card++) {
188  for (int j = 0; j < 2; j++) {
189  unsigned long int tmp;
190  unsigned et = RC[crate][card][j];
191  unsigned ovf = RCof[crate][card][j];
192  unsigned tau = RCtau[crate][card][j];
193  // ovf = ovf || (et>=0x400);
194  tmp = ((tau & 0x1) << 11) | ((ovf & 0x1) << 10) | ((et & 0x3ff));
195  sstrm << " " << setw(3) << setfill('0') << hex << tmp;
196  }
197  }
198  m_file[crate] << sstrm.str() << std::endl;
199  if (debug_NOTEMPTY[crate])
200  fdebug << sstrm.str() << std::endl << std::endl; // debug
201 
203  sstrm.str("");
204  for (int ip = 0; ip < 2; ip++) {
205  for (int ie = 0; ie < 4; ie++) {
206  unsigned et = HF[crate][ie][ip] & 0xff;
207  sstrm << " " << setw(2) << setfill('0') << hex << et;
208  }
209  }
210  m_file[crate] << sstrm.str() << std::endl;
211  if (debug_NOTEMPTY[crate])
212  fdebug << sstrm.str() << std::endl; // debug
213  sstrm << setfill(' ') << dec;
214 
215  } // end crate loop
216 
218  for (unsigned i = 0; i < NUM_RCT_CRATES; i++)
219  m_file[i] << std::flush;
220 
221  fdebug << std::flush;
222 }
RctDigiToRctText::RctDigiToRctText
RctDigiToRctText(const edm::ParameterSet &)
Definition: RctDigiToRctText.cc:11
electrons_cff.bool
bool
Definition: electrons_cff.py:393
mps_fire.i
i
Definition: mps_fire.py:428
metsig::tau
Definition: SignAlgoResolutions.h:49
edm
HLT enums.
Definition: AlignableModifier.h:19
HLT_FULL_cff.InputTag
InputTag
Definition: HLT_FULL_cff.py:89353
RctDigiToRctText::analyze
void analyze(const edm::Event &, const edm::EventSetup &) override
Definition: RctDigiToRctText.cc:40
RctDigiToRctText::m_file
std::ofstream m_file[NUM_RCT_CRATES]
handles for output files
Definition: RctDigiToRctText.h:48
RctDigiToRctText::~RctDigiToRctText
~RctDigiToRctText() override
Definition: RctDigiToRctText.cc:33
MillePedeFileConverter_cfg.fileName
fileName
Definition: MillePedeFileConverter_cfg.py:32
createJobs.tmp
tmp
align.sh
Definition: createJobs.py:716
edm::Handle
Definition: AssociativeIterator.h:50
RctDigiToRctText::fdebug
std::ofstream fdebug
handle for debug file
Definition: RctDigiToRctText.h:51
RctDigiToRctText::m_textFileName
std::string m_textFileName
basename for output files
Definition: RctDigiToRctText.h:42
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
LogDebug
#define LogDebug(id)
Definition: MessageLogger.h:223
edm::ParameterSet
Definition: ParameterSet.h:47
iEvent
int iEvent
Definition: GenABIO.cc:224
RctDigiToRctText.h
EgHLTOffHistBins_cfi.et
et
Definition: EgHLTOffHistBins_cfi.py:8
NUM_RCT_CRATES
const static unsigned NUM_RCT_CRATES
Definition: RctDigiToRctText.h:28
edm::EventSetup
Definition: EventSetup.h:57
nevt
int nevt
Definition: ReggeGribovPartonMCHadronizer.h:66
std
Definition: JetResolutionObject.h:76
triggerObjects_cff.id
id
Definition: triggerObjects_cff.py:31
Exception
Definition: hltDiff.cc:246
RctDigiToRctText::m_hexUpperCase
bool m_hexUpperCase
write upper case hex words
Definition: RctDigiToRctText.h:45
data
char data[epos_bytes_allocation]
Definition: EPOS_Wrapper.h:79
RctDigiToRctText::m_rctInputLabel
edm::InputTag m_rctInputLabel
label for RCT digis
Definition: RctDigiToRctText.h:39
MillePedeFileConverter_cfg.out
out
Definition: MillePedeFileConverter_cfg.py:31
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
edm::Event
Definition: Event.h:73
DigiToRawDM_cff.HF
HF
Definition: DigiToRawDM_cff.py:22
TauDecayModes.dec
dec
Definition: TauDecayModes.py:143