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 }
PositionType computePosition()
Compute average z position from all components (x and y forced to 0)
Alignable * mother() const
Return pointer to container alignable (if any)
Definition: Alignable.h:91
AlignableCSCRing & ring(int i)
Return Alignable CSC Ring at given index.
std::ostream & operator<<(std::ostream &os, const AlignableCSCStation &b)
Output Station information.
RotationType computeOrientation()
Just initialize to default given by default constructor of a RotationType.
AlignableCSCStation(const std::vector< AlignableCSCRing *> &cscRings)
The constructor simply copies the vector of CSC Rings and computes the surface from them...
void setSurface(const AlignableSurface &s)
AlignableSurface computeSurface()
void dump(void) const override
Recursive printout of the muon CSC Station structure.
Log< level::Info, false > LogInfo
void setMother(Alignable *mother)
Assign mother to alignable.
Definition: Alignable.h:94
std::vector< AlignableCSCRing * > theCSCRings
double b
Definition: hdecay.h:120
align::RotationType RotationType
Definition: Alignable.h:31
int size() const
Return number of direct components.
Definition: Alignable.h:68
align::PositionType PositionType
Definition: Alignable.h:30
CompConstraintType compConstraintType_
Definition: Alignable.h:246
void addComponent(Alignable *component) final