1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
|
/*
* $Date: 2011/09/05 16:59:07 $
* $Revision: 1.9 $
*/
#include "Alignment/TrackerAlignment/interface/AlignableSiStripDet.h"
#include "Alignment/CommonAlignment/interface/AlignableSurface.h"
#include "CondFormats/Alignment/interface/AlignmentErrorsExtended.h"
#include "CondFormats/Alignment/interface/AlignTransformErrorExtended.h"
#include "DataFormats/GeometrySurface/interface/Bounds.h"
#include "DataFormats/GeometryCommonDetAlgo/interface/AlignmentPositionError.h"
#include "DataFormats/GeometryCommonDetAlgo/interface/GlobalError.h"
#include "DataFormats/GeometrySurface/interface/BoundPlane.h"
#include "Geometry/TrackerGeometryBuilder/interface/PlaneBuilderForGluedDet.h"
#include "Geometry/CommonDetUnit/interface/GluedGeomDet.h"
#include "Geometry/TrackerGeometryBuilder/interface/StripGeomDetUnit.h"
#include "FWCore/Utilities/interface/Exception.h"
#include "FWCore/MessageLogger/interface/MessageLogger.h"
#include <cmath>
AlignableSiStripDet::AlignableSiStripDet(const GluedGeomDet* gluedDet)
: AlignableDet(gluedDet, true), // true: adding DetUnits
theMonoBounds(gluedDet->monoDet()->surface().bounds().clone()),
theStereoBounds(gluedDet->stereoDet()->surface().bounds().clone()),
theMonoType(static_cast<const StripGeomDetUnit*>(gluedDet->monoDet())->specificType()),
theStereoType(static_cast<const StripGeomDetUnit*>(gluedDet->stereoDet())->specificType()) {
// It is not allowed to store a pointer to GeomDet within objects with a life time
// longer than an Event:
// GeomDet comes from TrackerGeometry that is created from GeometricDet that depends on
// IdealGeometryRecord from EventSetup, so it could change in next event!
// ==> Need to store directly what I need from it.
// Unfortunately the current way with references for the type does not solve that,
// either. But currently no way out, see header file.
// check order mono/stereo
const Alignables units(this->components());
if (units.size() != 2 || gluedDet->monoDet()->geographicalId() != units[0]->geomDetId() ||
gluedDet->stereoDet()->geographicalId() != units[1]->geomDetId()) {
throw cms::Exception("LogicError") << "[AlignableSiStripDet] "
<< "Either != 2 components or "
<< "mono/stereo in wrong order for consistifyAlignments.";
}
}
//__________________________________________________________________________________________________
AlignableSiStripDet::~AlignableSiStripDet() {
delete theMonoBounds;
delete theStereoBounds;
}
//__________________________________________________________________________________________________
Alignments* AlignableSiStripDet::alignments() const {
const_cast<AlignableSiStripDet*>(this)->consistifyAlignments();
return this->AlignableDet::alignments();
}
//__________________________________________________________________________________________________
void AlignableSiStripDet::consistifyAlignments() {
// make alignments consistent with daughters, calling method from geometry
// The aim of all this gymnastics is to have the alignments calculated by
// PlaneBuilderForGluedDet::plane(const std::vector<const GeomDetUnit*> &detComps);
//
// So we take the (new) position and orientation from the AligableDetUnits,
// but bounds and GeomDetType from original GeomDetUnits to create new GeomDetUnits
// that are passed to that routine.
const Alignables aliUnits(this->components()); // order mono==0, stereo==1 checked in ctr.
BoundPlane::BoundPlanePointer monoPlane =
BoundPlane::build(aliUnits[0]->globalPosition(), aliUnits[0]->globalRotation(), theMonoBounds->clone());
// Fortunately we do not seem to need a GeometricDet pointer and can use 0:
const StripGeomDetUnit monoDet(&(*monoPlane), &theMonoType, 0);
BoundPlane::BoundPlanePointer stereoPlane =
BoundPlane::build(aliUnits[1]->globalPosition(), aliUnits[1]->globalRotation(), theStereoBounds->clone());
// Fortunately we do not seem to need a GeometricDet pointer and can use 0:
const StripGeomDetUnit stereoDet(&(*stereoPlane), &theStereoType, 0);
std::vector<const GeomDetUnit*> detComps;
detComps.push_back(&monoDet); // order mono first, stereo second should be as in...
detComps.push_back(&stereoDet); // ...TrackerGeomBuilderFromGeometricDet::buildGeomDet
// Now we have all to calculate new position and rotation via PlaneBuilderForGluedDet.
const PositionType oldPos(theSurface.position()); // From old surface for keeping...
const RotationType oldRot(theSurface.rotation()); // ...track of changes.
PlaneBuilderForGluedDet planeBuilder;
theSurface = AlignableSurface(*planeBuilder.plane(detComps));
// But do not forget to keep track of movements/rotations:
const GlobalVector movement(theSurface.position().basicVector() - oldPos.basicVector());
// Seems to be correct down to delta angles 4.*1e-8:
const RotationType rotation(oldRot.multiplyInverse(theSurface.rotation()));
this->addDisplacement(movement);
this->addRotation(rotation);
// this->dumpCompareEuler(oldRot, theSurface.rotation());
// if (movement.mag2()) { // > 1.e-10) {
// edm::LogWarning("Alignment") << "@SUB=consistifyAlignments"
// << "Delta: " << movement.x() << " " << movement.y() << " " << movement.z()
// << "\nPos: " << oldPos.perp() << " " << oldPos.phi() << " " << oldPos.z();
// }
}
// #include "CLHEP/Vector/EulerAngles.h"
// #include "CLHEP/Vector/Rotation.h"
// //__________________________________________________________________________________________________
// void AlignableSiStripDet::dumpCompareEuler(const RotationType &oldRot,
// const RotationType &newRot) const
// {
// //
// const HepRotation oldClhep(HepRep3x3(oldRot.xx(), oldRot.xy(), oldRot.xz(),
// oldRot.yx(), oldRot.yy(), oldRot.yz(),
// oldRot.zx(), oldRot.zy(), oldRot.zz()));
//
// const HepRotation newClhep(HepRep3x3(newRot.xx(), newRot.xy(), newRot.xz(),
// newRot.yx(), newRot.yy(), newRot.yz(),
// newRot.zx(), newRot.zy(), newRot.zz()));
//
// const RotationType rotationGlob(oldRot.multiplyInverse(newRot));
// const RotationType rotation(theSurface.toLocal(rotationGlob)); // not 100% correct: new global...
// const HepRotation diff(HepRep3x3(rotation.xx(), rotation.xy(), rotation.xz(),
// rotation.yx(), rotation.yy(), rotation.yz(),
// rotation.zx(), rotation.zy(), rotation.zz()));
//
// edm::LogWarning("Alignment") << "@SUB=dumpCompareEuler"
// << "oldEuler " << oldClhep.eulerAngles()
// << "\nnewEuler " << newClhep.eulerAngles()
// << "\n diff_euler " << diff.eulerAngles()
// << "\n diff_diag (" << diff.xx() << ", " << diff.yy()
// << ", " << diff.zz() << ")";
// }
|