CMS 3D CMS Logo

AlignableCSCEndcap.cc
Go to the documentation of this file.
1 
9 #include <memory>
10 
15 
16 
18 AlignableCSCEndcap::AlignableCSCEndcap( const std::vector<AlignableCSCStation*>& cscStations )
19  : AlignableComposite(cscStations[0]->id(), align::AlignableCSCEndcap)
20 {
21 
22  theCSCStations.insert( theCSCStations.end(), cscStations.begin(), cscStations.end() );
23 
24  // maintain also list of components
25  for (const auto& station: cscStations) {
26  const auto mother = station->mother();
27  this->addComponent(station); // components will be deleted by dtor of AlignableComposite
28  station->setMother(mother); // restore previous behaviour where mother is not set
29  }
30 
33 }
34 
37 {
38 
39  if (i >= size() )
40  throw cms::Exception("LogicError") << "Station index (" << i << ") out of range";
41 
42  return *theCSCStations[i];
43 
44 }
45 
46 
50 {
51 
53 
54 }
55 
56 
57 
60 {
61 
62  float zz = 0.;
63 
64  for ( std::vector<AlignableCSCStation*>::iterator ilayer = theCSCStations.begin();
65  ilayer != theCSCStations.end(); ilayer++ )
66  zz += (*ilayer)->globalPosition().z();
67 
68  zz /= static_cast<float>(theCSCStations.size());
69 
70  return PositionType( 0.0, 0.0, zz );
71 
72 }
73 
74 
77 {
78  return RotationType();
79 }
80 
81 
83 std::ostream &operator << (std::ostream& os, const AlignableCSCEndcap& b )
84 {
85 
86  os << "This EndCap contains " << b.theCSCStations.size() << " CSC stations" << std::endl;
87  os << "(phi, r, z) = (" << b.globalPosition().phi() << ","
88  << b.globalPosition().perp() << "," << b.globalPosition().z();
89  os << "), orientation:" << std::endl<< b.globalRotation() << std::endl;
90  return os;
91 
92 }
93 
94 
96 void AlignableCSCEndcap::dump( void ) const
97 {
98 
99  edm::LogInfo("AlignableDump") << (*this);
100  for ( std::vector<AlignableCSCStation*>::const_iterator iLayer = theCSCStations.begin();
101  iLayer != theCSCStations.end(); iLayer++ )
102  (*iLayer)->dump();
103 
104 }
105 
106 //__________________________________________________________________________________________________
107 
109 {
110  Alignments* m_alignments = new Alignments();
111 
112  // Add components recursively
113  for (const auto& i: this->components()) {
114  std::unique_ptr<Alignments> tmpAlignments{i->alignments()};
115  std::copy(tmpAlignments->m_align.begin(), tmpAlignments->m_align.end(),
116  std::back_inserter(m_alignments->m_align));
117  }
118 
119  // sort by rawId
120  std::sort( m_alignments->m_align.begin(), m_alignments->m_align.end());
121 
122  return m_alignments;
123 }
124 
125 //__________________________________________________________________________________________________
126 
128 {
129  AlignmentErrorsExtended* m_alignmentErrors = new AlignmentErrorsExtended();
130 
131  // Add components recursively
132  for (const auto& i: this->components()) {
133  std::unique_ptr<AlignmentErrorsExtended> tmpAlignmentErrorsExtended{i->alignmentErrors()};
134  std::copy(tmpAlignmentErrorsExtended->m_alignError.begin(), tmpAlignmentErrorsExtended->m_alignError.end(),
135  std::back_inserter(m_alignmentErrors->m_alignError) );
136  }
137 
138  // sort by rawId
139  std::sort( m_alignmentErrors->m_alignError.begin(), m_alignmentErrors->m_alignError.end());
140 
141  return m_alignmentErrors;
142 }
143 
const Alignables & components() const override
Return vector of direct components.
void dump(void) const override
Recursive printout of the muon End Cap structure.
T perp() const
Definition: PV3DBase.h:72
def copy(args, dbName)
friend std::ostream & operator<<(std::ostream &, const AlignableCSCEndcap &)
Printout muon End Cap information (not recursive)
Geom::Phi< T > phi() const
Definition: PV3DBase.h:69
Alignments * alignments() const override
Return alignment data.
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:141
AlignmentErrorsExtended * alignmentErrors() const override
Return vector of alignment errors.
std::vector< AlignTransform > m_align
Definition: Alignments.h:19
void setSurface(const AlignableSurface &s)
AlignableSurface computeSurface()
T z() const
Definition: PV3DBase.h:64
RotationType computeOrientation()
Just initialize to default given by default constructor of a RotationType.
void setMother(Alignable *mother)
Assign mother to alignable.
Definition: Alignable.h:97
std::vector< AlignableCSCStation * > theCSCStations
std::vector< AlignTransformErrorExtended > m_alignError
double b
Definition: hdecay.h:120
align::RotationType RotationType
Definition: Alignable.h:34
align::PositionType PositionType
Definition: Alignable.h:33
PositionType computePosition()
Compute average z position from all components (x and y forced to 0)
CompConstraintType compConstraintType_
Definition: Alignable.h:255
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:138
Alignable * mother() const
Return pointer to container alignable (if any)
Definition: Alignable.h:94
AlignableCSCEndcap(const std::vector< AlignableCSCStation * > &cscStations)
The constructor simply copies the vector of stations and computes the surface from them...
void addComponent(Alignable *component) final
int size() const
Return number of direct components.
Definition: Alignable.h:71
AlignableCSCStation & station(int i)
Return AlignableCSCEndcap station at given index.