CMS 3D CMS Logo

AlignableCSCRing.cc
Go to the documentation of this file.
1 
10 
12 AlignableCSCRing::AlignableCSCRing(const std::vector<AlignableCSCChamber*>& cscChambers)
13  : AlignableComposite(cscChambers[0]->id(), align::AlignableCSCRing) {
14  theCSCChambers.insert(theCSCChambers.end(), cscChambers.begin(), cscChambers.end());
15 
16  // maintain also list of components
17  for (const auto& chamber : cscChambers) {
18  const auto mother = chamber->mother();
19  this->addComponent(chamber); // components will be deleted by dtor of AlignableComposite
20  chamber->setMother(mother); // restore previous behaviour where mother is not set
21  }
22 
25 }
26 
29  if (i >= size())
30  throw cms::Exception("LogicError") << "CSC Chamber index (" << i << ") out of range";
31 
32  return *theCSCChambers[i];
33 }
34 
39 }
40 
43  float zz = 0.;
44 
45  for (std::vector<AlignableCSCChamber*>::iterator ichamber = theCSCChambers.begin(); ichamber != theCSCChambers.end();
46  ichamber++)
47  zz += (*ichamber)->globalPosition().z();
48 
49  zz /= static_cast<float>(theCSCChambers.size());
50 
51  return PositionType(0.0, 0.0, zz);
52 }
53 
56 
57 // /// Twists all components by given angle
58 // void AlignableCSCRing::twist(float rad)
59 // {
60 // for ( std::vector<AlignableCSCChamber*>::iterator iter = theCSCChambers.begin();
61 // iter != theCSCChambers.end(); iter++ )
62 // (*iter)->twist(rad);
63 
64 // }
65 
67 std::ostream& operator<<(std::ostream& os, const AlignableCSCRing& b) {
68  os << "This CSC Ring contains " << b.theCSCChambers.size() << " CSC chambers" << std::endl;
69  os << "(phi, r, z) = (" << b.globalPosition().phi() << "," << b.globalPosition().perp() << ","
70  << b.globalPosition().z();
71  os << "), orientation:" << std::endl << b.globalRotation() << std::endl;
72  return os;
73 }
74 
76 void AlignableCSCRing::dump(void) const {
77  edm::LogInfo("AlignableDump") << (*this);
78  for (std::vector<AlignableCSCChamber*>::const_iterator iChamber = theCSCChambers.begin();
79  iChamber != theCSCChambers.end();
80  iChamber++)
81  edm::LogInfo("AlignableDump") << (**iChamber);
82 }
Alignable * mother() const
Return pointer to container alignable (if any)
Definition: Alignable.h:91
void dump(void) const override
Recursive printout of the muon CSC Ring structure.
PositionType computePosition()
Compute average z position from all components (x and y forced to 0)
void setSurface(const AlignableSurface &s)
std::vector< AlignableCSCChamber * > theCSCChambers
AlignableCSCRing(const std::vector< AlignableCSCChamber *> &cscChambers)
The constructor simply copies the vector of CSC Chambers and computes the surface from them...
RotationType computeOrientation()
Just initialize to default given by default constructor of a RotationType.
Log< level::Info, false > LogInfo
void setMother(Alignable *mother)
Assign mother to alignable.
Definition: Alignable.h:94
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
std::ostream & operator<<(std::ostream &os, const AlignableCSCRing &b)
Output Ring information.
AlignableSurface computeSurface()
CompConstraintType compConstraintType_
Definition: Alignable.h:246
AlignableCSCChamber & chamber(int i)
Return Alignable CSC Chamber at given index.
void addComponent(Alignable *component) final
A muon CSC Chamber( an AlignableDet )