CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
AlignableDataIORoot.cc
Go to the documentation of this file.
1 #include "TTree.h"
2 
5 
7 
8 // ----------------------------------------------------------------------------
9 // constructor
12 {
13  if (thePosType == Abs) {
14  treename = "AlignablesAbsPos";
15  treetxt = "Alignables abs.Pos";
16  }
17  else if (thePosType == Org) {
18  treename = "AlignablesOrgPos";
19  treetxt = "Alignables org.Pos";
20  }
21  else if (thePosType == Rel) {
22  treename = "AlignablesRelPos";
23  treetxt = "Alignables rel.Pos";
24  }
25 }
26 
27 // ----------------------------------------------------------------------------
28 // create root tree branches (for writing)
29 
31 {
32  tree->Branch("Id", &Id, "Id/i");
33  tree->Branch("ObjId", &ObjId, "ObjId/I");
34  tree->Branch("Pos", &Pos, "Pos[3]/D");
35  tree->Branch("Rot", &Rot, "Rot[9]/D");
36 
37  tree->Branch("NumDeform", &numDeformationValues_, "NumDeform/i");
38  tree->Branch("DeformValues", deformationValues_, "DeformValues[NumDeform]/F");
39 }
40 
41 // ----------------------------------------------------------------------------
42 // set root tree branch addresses (for reading)
43 
45 {
46  tree->SetBranchAddress("Id", &Id);
47  tree->SetBranchAddress("ObjId", &ObjId);
48  tree->SetBranchAddress("Pos", &Pos);
49  tree->SetBranchAddress("Rot", &Rot);
50 
51  tree->SetBranchAddress("NumDeform", &numDeformationValues_);
52  tree->SetBranchAddress("DeformValues", deformationValues_);
53 }
54 
55 // ----------------------------------------------------------------------------
56 // find root tree entry based on IDs
57 
59 {
60  if (newopen) { // we're here first time
61  edm::LogInfo("Alignment") << "@SUB=AlignableDataIORoot::findEntry"
62  << "Filling map ...";
63  treemap.erase(treemap.begin(),treemap.end());
64  for (int ev = 0;ev<tree->GetEntries();ev++) {
65  tree->GetEntry(ev);
66  treemap[ std::make_pair(Id,ObjId) ] = ev;
67  }
68  newopen=false;
69  }
70 
71  // now we have filled the map
72  treemaptype::iterator imap = treemap.find( std::make_pair(id,comp) );
73  int result=-1;
74  if (imap != treemap.end()) result=(*imap).second;
75  return result;
76 
77 }
78 
79 // ----------------------------------------------------------------------------
81 {
82  align::GlobalPoint pos = ad.pos();
84  Id = ad.id();
85  ObjId = ad.objId();
86  Pos[0]=pos.x(); Pos[1]=pos.y(); Pos[2]=pos.z();
87  Rot[0]=rot.xx(); Rot[1]=rot.xy(); Rot[2]=rot.xz();
88  Rot[3]=rot.yx(); Rot[4]=rot.yy(); Rot[5]=rot.yz();
89  Rot[6]=rot.zx(); Rot[7]=rot.zy(); Rot[8]=rot.zz();
90 
91  const std::vector<double> &deformPars = ad.deformationParameters();
92  numDeformationValues_ = (deformPars.size() > kMaxNumPar ? kMaxNumPar : deformPars.size());
93  for (unsigned int i = 0; i < numDeformationValues_; ++i) {
94  deformationValues_[i] = deformPars[i];
95  }
96 
97  tree->Fill();
98  return 0;
99 }
100 
101 // ----------------------------------------------------------------------------
103 {
104  align::GlobalVector pos = ad.pos();
105  align::RotationType rot = ad.rot();
106  Id = ad.id();
107  ObjId = ad.objId();
108  Pos[0]=pos.x(); Pos[1]=pos.y(); Pos[2]=pos.z();
109  Rot[0]=rot.xx(); Rot[1]=rot.xy(); Rot[2]=rot.xz();
110  Rot[3]=rot.yx(); Rot[4]=rot.yy(); Rot[5]=rot.yz();
111  Rot[6]=rot.zx(); Rot[7]=rot.zy(); Rot[8]=rot.zz();
112 
113  const std::vector<double> &deformPars = ad.deformationParameters();
114  numDeformationValues_ = (deformPars.size() > kMaxNumPar ? kMaxNumPar : deformPars.size());
115  for (unsigned int i = 0; i < numDeformationValues_; ++i) {
116  deformationValues_[i] = deformPars[i];
117  }
118 
119  tree->Fill();
120  return 0;
121 }
122 
123 // ----------------------------------------------------------------------------
125 {
126  align::GlobalPoint pos;
128 
129  align::StructureType typeId = ali->alignableObjectId();
130  align::ID id = ali->id();
131  int entry = findEntry(id,typeId);
132  if(entry!=-1) {
133  tree->GetEntry(entry);
134  align::GlobalPoint pos2(Pos[0],Pos[1],Pos[2]);
135  align::RotationType rot2(Rot[0],Rot[1],Rot[2],
136  Rot[3],Rot[4],Rot[5],
137  Rot[6],Rot[7],Rot[8]);
138  pos=pos2;
139  rot=rot2;
140 
141  // FIXME: Should add reading of deformation values?
142  // Then call Alignable::setSurfaceDeformation(..) ...
143  ierr=0;
144  }
145  else ierr=-1;
146 
147  return AlignableAbsData(pos,rot,id,typeId);
148 }
149 
150 // ----------------------------------------------------------------------------
151 
153 {
156 
157  align::StructureType typeId = ali->alignableObjectId();
158  align::ID id = ali->id();
159  int entry = findEntry(id,typeId);
160  if(entry!=-1) {
161  tree->GetEntry(entry);
162  align::GlobalVector pos2(Pos[0],Pos[1],Pos[2]);
163  align::RotationType rot2(Rot[0],Rot[1],Rot[2],
164  Rot[3],Rot[4],Rot[5],
165  Rot[6],Rot[7],Rot[8]);
166  pos=pos2;
167  rot=rot2;
168 
169  // FIXME: Should add reading of deformation values?
170  // Then call Alignable::setSurfaceDeformation(..) ...
171  ierr=0;
172  }
173  else ierr=-1;
174 
175  return AlignableRelData(pos,rot,id,typeId);
176 }
T xx() const
align::StructureType objId() const
Definition: AlignableData.h:30
AlignableDataIORoot(PosType p)
constructor
align::ID id() const
Return the ID of Alignable, i.e. DetId of &#39;first&#39; component GeomDet(Unit).
Definition: Alignable.h:185
int i
Definition: DBlmapReader.cc:9
int writeRelRaw(const AlignableRelData &ad)
write relative positions
void setBranchAddresses(void)
set root branches
uint32_t ID
Definition: Definitions.h:26
AlignableAbsData readAbsRaw(Alignable *ali, int &ierr)
read absolute positions
T y() const
Definition: PV3DBase.h:63
T yx() const
int writeAbsRaw(const AlignableAbsData &ad)
write absolute positions
bool ev
void createBranches(void)
create root branches
AlignableData< align::GlobalVector > AlignableRelData
relative position/rotation
Definition: AlignableData.h:49
T zx() const
T xy() const
T zz() const
Float_t deformationValues_[kMaxNumPar]
T z() const
Definition: PV3DBase.h:64
tuple result
Definition: query.py:137
int findEntry(align::ID, align::StructureType)
virtual StructureType alignableObjectId() const =0
Return the alignable type identifier.
T zy() const
T yy() const
align::StructureType ObjId
root tree contents
AlignableData< align::GlobalPoint > AlignableAbsData
Absolute position/rotation.
Definition: AlignableData.h:47
T xz() const
AlignableRelData readRelRaw(Alignable *ali, int &ierr)
read relative positions
const std::vector< double > deformationParameters() const
Definition: AlignableData.h:32
const T & pos() const
accessors
Definition: AlignableData.h:28
T x() const
Definition: PV3DBase.h:62
T yz() const
const align::RotationType & rot() const
Definition: AlignableData.h:29
align::ID id() const
Definition: AlignableData.h:31