CMS 3D CMS Logo

SurveyDataReader.cc
Go to the documentation of this file.
1 // System
2 #include <fstream>
3 #include <iostream>
4 
6 
10 
12 
13 using namespace std;
14 using namespace edm;
15 
16 //__________________________________________________________________________________________________
17 void SurveyDataReader::readFile(const std::string& textFileName,
18  const std::string& fileType,
19  const TrackerTopology* tTopo) {
20  std::ifstream myfile(textFileName.c_str());
21  if (!myfile.is_open())
22  throw cms::Exception("FileAccess") << "Unable to open input text file for " << fileType.c_str();
23 
24  int nErrors = 0;
25  align::ID m_detId = 0;
26  int NINPUTS_align = 30;
27  int NINPUTS_detId = 6;
28  if (fileType == "TID")
29  NINPUTS_detId++;
30 
31  std::vector<int> d_inputs;
32  align::Scalars a_inputs;
33  align::Scalars a_outputs;
34  int itmpInput;
35  float tmpInput;
36 
37  while (!myfile.eof() && myfile.good()) {
38  d_inputs.clear();
39  a_inputs.clear();
40  a_outputs.clear();
41 
42  if (fileType == "TIB") {
43  itmpInput = int(StripSubdetector::TIB);
44  } else {
45  itmpInput = int(StripSubdetector::TID);
46  }
47 
48  d_inputs.push_back(itmpInput);
49 
50  for (int i = 0; i < NINPUTS_detId; i++) {
51  myfile >> itmpInput;
52  d_inputs.push_back(itmpInput);
53  }
54 
55  // Calculate DetId(s)
56  int ster = 0; // if module is single-sided, take the module
57  // if double-sided get the glued module
58 
59  if (fileType == "TID") {
60  m_detId = tTopo->tidDetId(d_inputs[2], d_inputs[3], d_inputs[4], d_inputs[5], d_inputs[6], ster);
61  } else if (fileType == "TIB") {
62  m_detId = tTopo->tibDetId(d_inputs[2], d_inputs[3], d_inputs[4], d_inputs[5], d_inputs[6], ster);
63  }
64 
65  if (abs(int(m_detId) - int(d_inputs[1])) > 2) { // Check DetId calculation ...
66  std::cout << "ERROR : DetId - detector position mismatch! Found " << nErrors << std::endl;
67  nErrors++;
68  }
69 
70  // std::cout << m_detId << " " << d_inputs[1] << std::endl;
71  // m_detId = d_inputs[1];
72  for (int j = 0; j < NINPUTS_align; j++) {
73  myfile >> tmpInput;
74  a_inputs.push_back(tmpInput);
75  }
76 
77  // Check if read succeeded (otherwise, we are at eof)
78  if (myfile.fail())
79  break;
80 
81  a_outputs = convertToAlignableCoord(a_inputs);
82 
83  theOriginalMap.insert(PairTypeOr(d_inputs, a_inputs));
84  theMap.insert(PairType(m_detId, a_outputs));
85  }
86 }
87 //__________________________________________________________________________________________________
89  align::Scalars align_outputs;
90 
91  // Convert to coordinates that TrackerAlignment can read in
92 
93  // Center of sensor
94  AlgebraicVector geomCent(3);
95  AlgebraicVector surCent(3);
96  for (int ii = 0; ii < 3; ii++) {
97  geomCent[ii] = align_params[ii];
98  surCent[ii] = align_params[ii + 15];
99  }
100  surCent -= geomCent;
101 
102  align_outputs.push_back(surCent[0]);
103  align_outputs.push_back(surCent[1]);
104  align_outputs.push_back(surCent[2]);
105 
106  // Rotation matrices
107  for (int ii = 3; ii < 12; ii++) {
108  align_outputs.push_back(align_params[ii]);
109  }
110  for (int ii = 18; ii < 27; ii++) {
111  align_outputs.push_back(align_params[ii]);
112  }
113 
114  return align_outputs;
115 }
mps_fire.i
i
Definition: mps_fire.py:428
MessageLogger.h
align::Scalars
std::vector< Scalar > Scalars
Definition: Utilities.h:26
edm
HLT enums.
Definition: AlignableModifier.h:19
TrackerTopology
Definition: TrackerTopology.h:16
SurveyDataReader::convertToAlignableCoord
align::Scalars convertToAlignableCoord(const align::Scalars &align_params)
Definition: SurveyDataReader.cc:88
gather_cfg.cout
cout
Definition: gather_cfg.py:144
TrackerTopology.h
SurveyDataReader::PairTypeOr
std::pair< std::vector< int >, align::Scalars > PairTypeOr
Definition: SurveyDataReader.h:20
AlgebraicVector
CLHEP::HepVector AlgebraicVector
Definition: AlgebraicObjects.h:13
TrackerTopology::tibDetId
DetId tibDetId(uint32_t layer, uint32_t str_fw_bw, uint32_t str_int_ext, uint32_t str, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:495
StripSubdetector::TIB
static constexpr auto TIB
Definition: StripSubdetector.h:16
SurveyDataReader.h
AlCaHLTBitMon_QueryRunRegistry.string
string
Definition: AlCaHLTBitMon_QueryRunRegistry.py:256
SurveyDataReader::readFile
void readFile(const std::string &textFileName, const std::string &fileType, const TrackerTopology *tTopo)
Read given text file.
Definition: SurveyDataReader.cc:17
align::ID
uint32_t ID
Definition: Definitions.h:24
createfilelist.int
int
Definition: createfilelist.py:10
IdealGeometryRecord.h
TrackerTopology::tidDetId
DetId tidDetId(uint32_t side, uint32_t wheel, uint32_t ring, uint32_t module_fw_bw, uint32_t module, uint32_t ster) const
Definition: TrackerTopology.h:508
std
Definition: JetResolutionObject.h:76
SurveyDataReader::PairType
std::pair< align::ID, align::Scalars > PairType
Definition: SurveyDataReader.h:18
cms::Exception
Definition: Exception.h:70
funct::abs
Abs< T >::type abs(const T &t)
Definition: Abs.h:22
dqmiolumiharvest.j
j
Definition: dqmiolumiharvest.py:66
StripSubdetector.h
cuy.ii
ii
Definition: cuy.py:590
StripSubdetector::TID
static constexpr auto TID
Definition: StripSubdetector.h:17