CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
DTSurvey Class Reference

#include <DTSurvey.h>

Public Member Functions

void CalculateChambers ()
 
 DTSurvey (const std::string &, const std::string &, int)
 
const DTSurveyChambergetChamber (int, int) const
 
int getId () const
 
void ReadChambers (edm::ESHandle< DTGeometry >)
 
 ~DTSurvey ()
 

Private Member Functions

void FillWheelInfo ()
 

Private Attributes

DTSurveyChamber *** chambers
 
TMatrixD delta
 
int id
 
std::string nameOfChamberInfoFile
 
std::string nameOfWheelInfoFile
 
float OffsetZ
 
TMatrixD Rot
 

Detailed Description

Implements a set of measurements given by survey, tipically a wheel. Contains DTSurveyChambers and the displacements and rotations for each are calculated.

Date:
2007/12/06 01:53:28
Revision:
1.3
Author
Pablo Martinez Ruiz del Arbol

Definition at line 25 of file DTSurvey.h.

Constructor & Destructor Documentation

DTSurvey::DTSurvey ( const std::string &  Wheel,
const std::string &  Chambers,
int  n 
)

Definition at line 12 of file DTSurvey.cc.

References FillWheelInfo(), dqmiodumpmetadata::n, nameOfChamberInfoFile, and nameOfWheelInfoFile.

12  : chambers(nullptr) {
13  nameOfWheelInfoFile = Wheel;
14  nameOfChamberInfoFile = Chambers;
15  id = n;
16 
17  FillWheelInfo();
18 }
std::string nameOfWheelInfoFile
Definition: DTSurvey.h:42
DTSurveyChamber *** chambers
Definition: DTSurvey.h:50
std::string nameOfChamberInfoFile
Definition: DTSurvey.h:42
void FillWheelInfo()
Definition: DTSurvey.cc:120
DTSurvey::~DTSurvey ( )

Definition at line 20 of file DTSurvey.cc.

References chambers.

20 { delete[] chambers; }
DTSurveyChamber *** chambers
Definition: DTSurvey.h:50

Member Function Documentation

void DTSurvey::CalculateChambers ( )

Definition at line 22 of file DTSurvey.cc.

References chambers, and DTSurveyChamber::compute().

Referenced by DTSurveyConvert::analyze().

22  {
23  for (int stationCounter = 0; stationCounter < 4; stationCounter++) {
24  for (int sectorCounter = 0; sectorCounter < 14; sectorCounter++) {
25  if (chambers[stationCounter][sectorCounter]->getNumberPoints() > 2) {
26  chambers[stationCounter][sectorCounter]->compute();
27  }
28  }
29  }
30 }
DTSurveyChamber *** chambers
Definition: DTSurvey.h:50
void DTSurvey::FillWheelInfo ( )
private

Definition at line 120 of file DTSurvey.cc.

References alpha, HLT_FULL_cff::beta, funct::cos(), delta, isotrackApplyRegressor::k, nameOfWheelInfoFile, OffsetZ, Rot, and funct::sin().

Referenced by DTSurvey().

120  {
121  std::ifstream wheeltowheel(nameOfWheelInfoFile.c_str());
122  float zOffset, deltax, deltay, deltaz, alpha, beta, gamma;
123  wheeltowheel >> zOffset >> deltax >> deltay >> deltaz >> alpha >> beta >> gamma;
124  wheeltowheel.close();
125 
126  OffsetZ = zOffset;
127 
128  //Build displacement vector
129  delta.ResizeTo(3, 1);
130  delta(0, 0) = deltax / 10.0;
131  delta(1, 0) = deltay / 10.0;
132  delta(2, 0) = deltaz / 10.0;
133 
134  //Build rotation matrix
135  Rot.ResizeTo(3, 3);
136  TMatrixD alpha_m(3, 3);
137  TMatrixD beta_m(3, 3);
138  TMatrixD gamma_m(3, 3);
139  alpha_m.Zero();
140  beta_m.Zero();
141  gamma_m.Zero();
142  for (int k = 0; k < 3; k++) {
143  alpha_m(k, k) = 1.0;
144  beta_m(k, k) = 1.0;
145  gamma_m(k, k) = 1.0;
146  }
147  alpha /= 1000.0; //New scale: angles in radians
148  beta /= 1000.0;
149  gamma /= 1000.0;
150  alpha_m(1, 1) = cos(alpha);
151  alpha_m(1, 2) = sin(alpha);
152  alpha_m(2, 1) = -sin(alpha);
153  alpha_m(2, 2) = cos(alpha);
154  beta_m(0, 0) = cos(beta);
155  beta_m(0, 2) = -sin(beta);
156  beta_m(2, 0) = sin(beta);
157  beta_m(2, 2) = cos(beta);
158  gamma_m(0, 0) = cos(gamma);
159  gamma_m(0, 1) = sin(gamma);
160  gamma_m(1, 0) = -sin(gamma);
161  gamma_m(1, 1) = cos(gamma);
162  Rot = alpha_m * beta_m * gamma_m;
163 }
float alpha
Definition: AMPTWrapper.h:105
TMatrixD Rot
Definition: DTSurvey.h:48
Sin< T >::type sin(const T &t)
Definition: Sin.h:22
std::string nameOfWheelInfoFile
Definition: DTSurvey.h:42
TMatrixD delta
Definition: DTSurvey.h:47
float OffsetZ
Definition: DTSurvey.h:46
Cos< T >::type cos(const T &t)
Definition: Cos.h:22
const DTSurveyChamber * DTSurvey::getChamber ( int  station,
int  sector 
) const

Definition at line 32 of file DTSurvey.cc.

References chambers, and relativeConstraints::station.

Referenced by operator<<().

32 { return chambers[station][sector]; }
DTSurveyChamber *** chambers
Definition: DTSurvey.h:50
int DTSurvey::getId ( ) const
inline

Definition at line 35 of file DTSurvey.h.

References id.

35 { return id; }
int id
Definition: DTSurvey.h:43
void DTSurvey::ReadChambers ( edm::ESHandle< DTGeometry pDD)

Definition at line 34 of file DTSurvey.cc.

References DTSurveyChamber::addPoint(), chambers, gather_cfg::cout, delta, change_name::diff, PVValHelper::dx, PVValHelper::dy, PVValHelper::dz, mergeVDriftHistosByStation::file, nameOfChamberInfoFile, OffsetZ, alignCSCRings::r, DetId::rawId(), SiStripPI::rms, Rot, hcal_runs::rt, relativeConstraints::station, GeomDet::toLocal(), x, PV3DBase< T, PVType, FrameType >::x(), y, PV3DBase< T, PVType, FrameType >::y(), z, and PV3DBase< T, PVType, FrameType >::z().

Referenced by DTSurveyConvert::analyze().

34  {
35  //Create the chambers
36  chambers = new DTSurveyChamber **[4];
37  for (int cont_stat = 0; cont_stat < 4; cont_stat++) {
38  chambers[cont_stat] = new DTSurveyChamber *[14];
39  for (int cont_sect = 0; cont_sect < 14; cont_sect++) {
40  DTChamberId mId(id, cont_stat + 1, cont_sect + 1);
41  chambers[cont_stat][cont_sect] = new DTSurveyChamber(id, cont_stat + 1, cont_sect + 1, mId.rawId());
42  }
43  }
44 
45  std::cout << nameOfChamberInfoFile << std::endl;
46  std::ifstream file(nameOfChamberInfoFile.c_str());
47  while (!file.eof()) {
48  int code, station, sector;
49  double x, y, z, rms, dx, dy, dz;
50  file >> code >> x >> y >> z >> rms >> dx >> dy >> dz;
51  if (file.eof())
52  break;
53  x = x / 10.0;
54  y = y / 10.0;
55  z = z / 10.0;
56  dx = dx / 10.0;
57  dy = dy / 10.0;
58  dz = dz / 10.0;
59  rms = rms / 10.0;
60  station = code / 10000 - 1;
61  sector = (code - (station + 1) * 10000) / 100 - 1;
62  //De momento vamos a actuar como si no hubiera otra forma de resolver esto
63  TMatrixD r(3, 1);
64  r(0, 0) = x;
65  r(1, 0) = y;
66  r(2, 0) = z + OffsetZ;
67  TMatrixD disp(3, 1);
68  disp(0, 0) = dx;
69  disp(1, 0) = dy;
70  disp(2, 0) = dz;
71  TMatrixD rp = Rot * r - delta;
72  disp = disp - r + rp;
73 
74  GlobalPoint rg(r(0, 0), r(1, 0), r(2, 0));
75  GlobalPoint rt(r(0, 0) - disp(0, 0), r(1, 0) - disp(1, 0), r(2, 0) - disp(2, 0));
76  DTChamberId mId(id, station + 1, sector + 1);
77  const DTChamber *mChamber = static_cast<const DTChamber *>(pDD->idToDet(mId));
78  LocalPoint rl = mChamber->toLocal(rg);
79  LocalPoint rtl = mChamber->toLocal(rt);
80  TMatrixD rLocal(3, 1);
81  rLocal(0, 0) = rl.x();
82  rLocal(1, 0) = rl.y();
83  rLocal(2, 0) = rl.z();
84  TMatrixD rTeo(3, 1);
85  rTeo(0, 0) = rtl.x();
86  rTeo(1, 0) = rtl.y();
87  rTeo(2, 0) = rtl.z();
88  TMatrixD diff = rLocal - rTeo;
89  TMatrixD errors(3, 1);
90  errors(0, 0) = rms;
91  errors(1, 0) = rms;
92  errors(2, 0) = rms;
93  chambers[station][sector]->addPoint(code, rLocal, diff, errors);
94  }
95  file.close();
96 }
TMatrixD Rot
Definition: DTSurvey.h:48
T y() const
Definition: PV3DBase.h:60
LocalPoint toLocal(const GlobalPoint &gp) const
Conversion to the R.F. of the GeomDet.
Definition: GeomDet.h:58
list rt
Definition: hcal_runs.py:76
TMatrixD delta
Definition: DTSurvey.h:47
float OffsetZ
Definition: DTSurvey.h:46
T z() const
Definition: PV3DBase.h:61
DTSurveyChamber *** chambers
Definition: DTSurvey.h:50
void addPoint(int, const TMatrixD &, const TMatrixD &, const TMatrixD &)
std::string nameOfChamberInfoFile
Definition: DTSurvey.h:42
tuple cout
Definition: gather_cfg.py:144
T x() const
Definition: PV3DBase.h:59

Member Data Documentation

DTSurveyChamber*** DTSurvey::chambers
private

Definition at line 50 of file DTSurvey.h.

Referenced by CalculateChambers(), getChamber(), ReadChambers(), and ~DTSurvey().

TMatrixD DTSurvey::delta
private
int DTSurvey::id
private

Definition at line 43 of file DTSurvey.h.

Referenced by getId().

std::string DTSurvey::nameOfChamberInfoFile
private

Definition at line 42 of file DTSurvey.h.

Referenced by DTSurvey(), and ReadChambers().

std::string DTSurvey::nameOfWheelInfoFile
private

Definition at line 42 of file DTSurvey.h.

Referenced by DTSurvey(), and FillWheelInfo().

float DTSurvey::OffsetZ
private

Definition at line 46 of file DTSurvey.h.

Referenced by FillWheelInfo(), and ReadChambers().

TMatrixD DTSurvey::Rot
private

Definition at line 48 of file DTSurvey.h.

Referenced by FillWheelInfo(), and ReadChambers().