CMS 3D CMS Logo

AlignableCSCStation.cc
Go to the documentation of this file.
1 
10 
12 AlignableCSCStation::AlignableCSCStation(const std::vector<AlignableCSCRing*>& cscRings)
13  : AlignableComposite(cscRings[0]->id(), align::AlignableCSCStation) {
14  theCSCRings.insert(theCSCRings.end(), cscRings.begin(), cscRings.end());
15 
16  // maintain also list of components
17  for (const auto& ring : cscRings) {
18  const auto mother = ring->mother();
19  this->addComponent(ring); // components will be deleted by dtor of AlignableComposite
20  ring->setMother(mother); // restore previous behaviour where mother is not set
21  }
22 
25 }
26 
29  if (i >= size())
30  throw cms::Exception("LogicError") << "CSC Ring index (" << i << ") out of range";
31 
32  return *theCSCRings[i];
33 }
34 
39 }
40 
43  float zz = 0.;
44 
45  for (std::vector<AlignableCSCRing*>::iterator ilayer = theCSCRings.begin(); ilayer != theCSCRings.end(); ilayer++)
46  zz += (*ilayer)->globalPosition().z();
47 
48  zz /= static_cast<float>(theCSCRings.size());
49 
50  return PositionType(0.0, 0.0, zz);
51 }
52 
55 
56 // /// Twists all components by given angle
57 // void AlignableCSCStation::twist(float rad)
58 // {
59 // for ( std::vector<AlignableCSCRing*>::iterator iter = theCSCRings.begin();
60 // iter != theCSCRings.end(); iter++ )
61 // (*iter)->twist(rad);
62 
63 // }
64 
66 std::ostream& operator<<(std::ostream& os, const AlignableCSCStation& b) {
67  os << "This CSC Station contains " << b.theCSCRings.size() << " CSC rings" << std::endl;
68  os << "(phi, r, z) = (" << b.globalPosition().phi() << "," << b.globalPosition().perp() << ","
69  << b.globalPosition().z();
70  os << "), orientation:" << std::endl << b.globalRotation() << std::endl;
71  return os;
72 }
73 
75 void AlignableCSCStation::dump(void) const {
76  edm::LogInfo("AlignableDump") << (*this);
77  for (std::vector<AlignableCSCRing*>::const_iterator iRing = theCSCRings.begin(); iRing != theCSCRings.end(); iRing++)
78  edm::LogInfo("AlignableDump") << (**iRing);
79 }
AlignableCSCStation(const std::vector< AlignableCSCRing * > &cscRings)
The constructor simply copies the vector of CSC Rings and computes the surface from them...
PositionType computePosition()
Compute average z position from all components (x and y forced to 0)
T perp() const
Definition: PV3DBase.h:69
void dump(void) const override
Recursive printout of the muon CSC Station structure.
AlignableCSCRing & ring(int i)
Return Alignable CSC Ring at given index.
Geom::Phi< T > phi() const
Definition: PV3DBase.h:66
const RotationType & globalRotation() const
Return the global orientation of the object.
Definition: Alignable.h:138
RotationType computeOrientation()
Just initialize to default given by default constructor of a RotationType.
void setSurface(const AlignableSurface &s)
friend std::ostream & operator<<(std::ostream &, const AlignableCSCStation &)
Printout muon CSC Station information (not recursive)
T z() const
Definition: PV3DBase.h:61
AlignableSurface computeSurface()
void setMother(Alignable *mother)
Assign mother to alignable.
Definition: Alignable.h:94
std::vector< AlignableCSCRing * > theCSCRings
double b
Definition: hdecay.h:118
align::RotationType RotationType
Definition: Alignable.h:31
align::PositionType PositionType
Definition: Alignable.h:30
CompConstraintType compConstraintType_
Definition: Alignable.h:246
const PositionType & globalPosition() const
Return the global position of the object.
Definition: Alignable.h:135
Alignable * mother() const
Return pointer to container alignable (if any)
Definition: Alignable.h:91
void addComponent(Alignable *component) final
int size() const
Return number of direct components.
Definition: Alignable.h:68