CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
List of all members | Public Member Functions | Private Member Functions | Private Attributes
MuonAlignmentOutputXML Class Reference

#include <Alignment/MuonAlignment/interface/MuonAlignmentOutputXML.h>

Public Member Functions

 MuonAlignmentOutputXML (const edm::ParameterSet &iConfig)
 
void write (AlignableMuon *alignableMuon, const edm::EventSetup &iSetup) const
 
virtual ~MuonAlignmentOutputXML ()
 

Private Member Functions

 MuonAlignmentOutputXML (const MuonAlignmentOutputXML &)
 
const MuonAlignmentOutputXMLoperator= (const MuonAlignmentOutputXML &)
 
void writeComponents (align::Alignables &alignables, align::Alignables &ideals, std::map< align::ID, CLHEP::HepSymMatrix > &errors, std::ofstream &outputFile, bool DT) const
 

Private Attributes

bool m_eulerAngles
 
std::string m_fileName
 
int m_precision
 
bool m_rawIds
 
int m_relativeto
 
bool m_suppressCSCChambers
 
bool m_suppressCSCEndcaps
 
bool m_suppressCSCLayers
 
bool m_suppressCSCRings
 
bool m_suppressCSCStations
 
bool m_suppressDTBarrel
 
bool m_suppressDTChambers
 
bool m_suppressDTLayers
 
bool m_suppressDTStations
 
bool m_suppressDTSuperLayers
 
bool m_suppressDTWheels
 
bool m_survey
 

Detailed Description

Description: <one line="" class="" summary>="">

Usage: <usage>

Definition at line 34 of file MuonAlignmentOutputXML.h.

Constructor & Destructor Documentation

MuonAlignmentOutputXML::MuonAlignmentOutputXML ( const edm::ParameterSet iConfig)

Definition at line 44 of file MuonAlignmentOutputXML.cc.

References edm::hlt::Exception, edm::ParameterSet::getParameter(), and m_relativeto.

45  : m_fileName(iConfig.getParameter<std::string>("fileName"))
46  , m_survey(iConfig.getParameter<bool>("survey"))
47  , m_rawIds(iConfig.getParameter<bool>("rawIds"))
48  , m_eulerAngles(iConfig.getParameter<bool>("eulerAngles"))
49  , m_precision(iConfig.getParameter<int>("precision"))
50  , m_suppressDTBarrel(iConfig.getUntrackedParameter<bool>("suppressDTBarrel", false))
51  , m_suppressDTWheels(iConfig.getUntrackedParameter<bool>("suppressDTWheels", false))
52  , m_suppressDTStations(iConfig.getUntrackedParameter<bool>("suppressDTStations", false))
53  , m_suppressDTChambers(iConfig.getUntrackedParameter<bool>("suppressDTChambers", false))
54  , m_suppressDTSuperLayers(iConfig.getUntrackedParameter<bool>("suppressDTSuperLayers", false))
55  , m_suppressDTLayers(iConfig.getUntrackedParameter<bool>("suppressDTLayers", false))
56  , m_suppressCSCEndcaps(iConfig.getUntrackedParameter<bool>("suppressCSCEndcaps", false))
57  , m_suppressCSCStations(iConfig.getUntrackedParameter<bool>("suppressCSCStations", false))
58  , m_suppressCSCRings(iConfig.getUntrackedParameter<bool>("suppressCSCRings", false))
59  , m_suppressCSCChambers(iConfig.getUntrackedParameter<bool>("suppressCSCChambers", false))
60  , m_suppressCSCLayers(iConfig.getUntrackedParameter<bool>("suppressCSCLayers", false))
61 {
62  std::string str_relativeto = iConfig.getParameter<std::string>("relativeto");
63 
64  if (str_relativeto == std::string("none")) {
65  m_relativeto = 0;
66  }
67  else if (str_relativeto == std::string("ideal")) {
68  m_relativeto = 1;
69  }
70  else if (str_relativeto == std::string("container")) {
71  m_relativeto = 2;
72  }
73  else {
74  throw cms::Exception("BadConfig") << "relativeto must be \"none\", \"ideal\", or \"container\"" << std::endl;
75  }
76 }
T getParameter(std::string const &) const
T getUntrackedParameter(std::string const &, T const &) const
MuonAlignmentOutputXML::~MuonAlignmentOutputXML ( )
virtual

Definition at line 83 of file MuonAlignmentOutputXML.cc.

84 {
85 }
MuonAlignmentOutputXML::MuonAlignmentOutputXML ( const MuonAlignmentOutputXML )
private

Member Function Documentation

const MuonAlignmentOutputXML& MuonAlignmentOutputXML::operator= ( const MuonAlignmentOutputXML )
private
void MuonAlignmentOutputXML::write ( AlignableMuon alignableMuon,
const edm::EventSetup iSetup 
) const

Definition at line 103 of file MuonAlignmentOutputXML.cc.

References CSCGeometryBuilderFromDDD::build(), DTGeometryBuilderFromDDD::build(), AlignableMuon::cscAlignmentErrors(), AlignableMuon::CSCEndcaps(), AlignableMuon::dtAlignmentErrors(), AlignableMuon::DTBarrel(), benchmark_cfg::errors, edm::EventSetup::get(), AlignmentErrors::m_alignError, m_fileName, m_precision, m_relativeto, download_sqlite_cfg::outputFile, and writeComponents().

Referenced by MuonAlignment::writeXML().

103  {
104  std::ofstream outputFile(m_fileName.c_str());
105  outputFile << std::setprecision(m_precision) << std::fixed;
106 
107  outputFile << "<?xml version=\"1.0\" encoding=\"UTF-8\"?>" << std::endl;
108  outputFile << "<?xml-stylesheet type=\"text/xml\" href=\"MuonAlignment.xsl\"?>" << std::endl;
109  outputFile << "<MuonAlignment>" << std::endl << std::endl;
110 
111  std::map<align::ID, CLHEP::HepSymMatrix> errors;
112  AlignmentErrors *dtErrors = alignableMuon->dtAlignmentErrors();
113  AlignmentErrors *cscErrors = alignableMuon->cscAlignmentErrors();
114  for (std::vector<AlignTransformError>::const_iterator dtError = dtErrors->m_alignError.begin(); dtError != dtErrors->m_alignError.end(); ++dtError) {
115  errors[dtError->rawId()] = dtError->matrix();
116  }
117  for (std::vector<AlignTransformError>::const_iterator cscError = cscErrors->m_alignError.begin(); cscError != cscErrors->m_alignError.end(); ++cscError) {
118  errors[cscError->rawId()] = cscError->matrix();
119  }
120 
121  align::Alignables barrels = alignableMuon->DTBarrel();
122  align::Alignables endcaps = alignableMuon->CSCEndcaps();
123 
124  if (m_relativeto == 1) {
126  iSetup.get<IdealGeometryRecord>().get(cpv);
127 
129  iSetup.get<MuonNumberingRecord>().get(mdc);
130  DTGeometryBuilderFromDDD DTGeometryBuilder;
132 
133  boost::shared_ptr<DTGeometry> dtGeometry(new DTGeometry );
134  DTGeometryBuilder.build(dtGeometry, &(*cpv), *mdc);
135 
136  boost::shared_ptr<CSCGeometry> boost_cscGeometry(new CSCGeometry);
137  CSCGeometryBuilder.build(boost_cscGeometry, &(*cpv), *mdc);
138 
139  AlignableMuon ideal_alignableMuon(&(*dtGeometry), &(*boost_cscGeometry));
140 
141  align::Alignables ideal_barrels = ideal_alignableMuon.DTBarrel();
142  align::Alignables ideal_endcaps = ideal_alignableMuon.CSCEndcaps();
143 
144  writeComponents(barrels, ideal_barrels, errors, outputFile, true);
145  writeComponents(endcaps, ideal_endcaps, errors, outputFile, false);
146  }
147  else {
148  align::Alignables empty1, empty2;
149 
150  writeComponents(barrels, empty1, errors, outputFile, true);
151  writeComponents(endcaps, empty2, errors, outputFile, false);
152  }
153 
154  outputFile << "</MuonAlignment>" << std::endl;
155 }
AlignmentErrors * dtAlignmentErrors()
align::Alignables DTBarrel()
std::vector< AlignTransformError > m_alignError
void build(boost::shared_ptr< CSCGeometry > geom, const DDCompactView *fv, const MuonDDDConstants &muonConstants)
Build the geometry.
align::Alignables CSCEndcaps()
AlignmentErrors * cscAlignmentErrors()
void build(boost::shared_ptr< DTGeometry > theGeometry, const DDCompactView *cview, const MuonDDDConstants &muonConstants)
const T & get() const
Definition: EventSetup.h:55
std::vector< Alignable * > Alignables
Definition: Utilities.h:28
Constructor of the full muon geometry.
Definition: AlignableMuon.h:36
void writeComponents(align::Alignables &alignables, align::Alignables &ideals, std::map< align::ID, CLHEP::HepSymMatrix > &errors, std::ofstream &outputFile, bool DT) const
void MuonAlignmentOutputXML::writeComponents ( align::Alignables alignables,
align::Alignables ideals,
std::map< align::ID, CLHEP::HepSymMatrix > &  errors,
std::ofstream &  outputFile,
bool  DT 
) const
private

Definition at line 157 of file MuonAlignmentOutputXML.cc.

References align::AlignableCSCChamber, align::AlignableCSCEndcap, align::AlignableCSCRing, align::AlignableCSCStation, align::AlignableDetUnit, align::AlignableDTBarrel, align::AlignableDTChamber, align::AlignableDTStation, align::AlignableDTSuperLayer, align::AlignableDTWheel, PV3DBase< T, PVType, FrameType >::basicVector(), makeMuonMisalignmentScenario::components, gather_cfg::cout, Reference_intrackfit_cff::endcap, edm::hlt::Exception, errorMatrix2Lands_multiChannel::id, m_eulerAngles, m_rawIds, m_relativeto, m_suppressCSCChambers, m_suppressCSCEndcaps, m_suppressCSCLayers, m_suppressCSCRings, m_suppressCSCStations, m_suppressDTBarrel, m_suppressDTChambers, m_suppressDTLayers, m_suppressDTStations, m_suppressDTSuperLayers, m_suppressDTWheels, m_survey, NULL, pos, relativeConstraints::ring, makeMuonMisalignmentScenario::rot, relativeConstraints::station, align::toAngles(), TkRotation< T >::transposed(), AlignableObjectId::typeToName(), PV3DBase< T, PVType, FrameType >::x(), TkRotation< T >::xx(), TkRotation< T >::xy(), TkRotation< T >::xz(), PV3DBase< T, PVType, FrameType >::y(), TkRotation< T >::yz(), PV3DBase< T, PVType, FrameType >::z(), and TkRotation< T >::zz().

Referenced by write().

158  {
159  align::Alignables::const_iterator ideal = ideals.begin();
160  for (align::Alignables::const_iterator alignable = alignables.begin(); alignable != alignables.end(); ++alignable) {
161  if (m_survey && (*alignable)->survey() == NULL) {
162  throw cms::Exception("Alignment") << "SurveyDets must all be defined when writing to XML" << std::endl;
163  } // now I can assume it's okay everywhere
164 
165  align::StructureType alignableObjectId = (*alignable)->alignableObjectId();
166 
167  if ((alignableObjectId == align::AlignableDTBarrel && !m_suppressDTBarrel) ||
168  (alignableObjectId == align::AlignableDTWheel && !m_suppressDTWheels) ||
169  (alignableObjectId == align::AlignableDTStation && !m_suppressDTStations) ||
170  (alignableObjectId == align::AlignableDTChamber && !m_suppressDTChambers) ||
171  (DT && alignableObjectId == align::AlignableDTSuperLayer && !m_suppressDTSuperLayers) ||
172  (DT && alignableObjectId == align::AlignableDetUnit && !m_suppressDTLayers) ||
173  (alignableObjectId == align::AlignableCSCEndcap && !m_suppressCSCEndcaps) ||
174  (alignableObjectId == align::AlignableCSCStation && !m_suppressCSCStations) ||
175  (alignableObjectId == align::AlignableCSCRing && !m_suppressCSCRings) ||
176  (alignableObjectId == align::AlignableCSCChamber && !m_suppressCSCChambers) ||
177  (!DT && alignableObjectId == align::AlignableDetUnit && !m_suppressCSCLayers)) {
178 
179  unsigned int rawId = (*alignable)->geomDetId().rawId();
180  outputFile << "<operation>" << std::endl;
181 
182  if (DT) {
183  if (m_rawIds && rawId != 0) {
184  static AlignableObjectId converter;
185  std::string typeName = converter.typeToName(alignableObjectId);
186  if (alignableObjectId == align::AlignableDTSuperLayer) typeName = std::string("DTSuperLayer");
187  if (alignableObjectId == align::AlignableDetUnit) typeName = std::string("DTLayer");
188  outputFile << " <" << typeName << " rawId=\"" << rawId << "\" />" << std::endl;
189  }
190  else {
191  if (alignableObjectId == align::AlignableDetUnit) {
192  DTLayerId id(rawId);
193  outputFile << " <DTLayer wheel=\"" << id.wheel() << "\" station=\"" << id.station() << "\" sector=\"" << id.sector() << "\" superlayer=\"" << id.superlayer() << "\" layer=\"" << id.layer() << "\" />" << std::endl;
194  }
195  else if (alignableObjectId == align::AlignableDTSuperLayer) {
196  DTSuperLayerId id(rawId);
197  outputFile << " <DTSuperLayer wheel=\"" << id.wheel() << "\" station=\"" << id.station() << "\" sector=\"" << id.sector() << "\" superlayer=\"" << id.superlayer() << "\" />" << std::endl;
198  }
199  else if (alignableObjectId == align::AlignableDTChamber) {
200  DTChamberId id(rawId);
201  outputFile << " <DTChamber wheel=\"" << id.wheel() << "\" station=\"" << id.station() << "\" sector=\"" << id.sector() << "\" />" << std::endl;
202  }
203 
204  else {
205  DTChamberId id((*alignable)->id());
206  if (alignableObjectId == align::AlignableDTStation) {
207  outputFile << " <DTStation wheel=\"" << id.wheel() << "\" station=\"" << id.station() << "\" />" << std::endl;
208  }
209  else if (alignableObjectId == align::AlignableDTWheel) {
210  outputFile << " <DTWheel wheel=\"" << id.wheel() << "\" />" << std::endl;
211  }
212  else if (alignableObjectId == align::AlignableDTBarrel) {
213  outputFile << " <DTBarrel />" << std::endl;
214  }
215  else throw cms::Exception("Alignment") << "Unknown DT Alignable StructureType" << std::endl;
216  }
217 
218  } // end if not rawId
219  } // end if DT
220 
221  else { // CSC
222  if (m_rawIds && rawId != 0) {
223  static AlignableObjectId converter;
224  std::string typeName = converter.typeToName(alignableObjectId);
225  if (alignableObjectId == align::AlignableDetUnit) typeName = std::string("CSCLayer");
226  outputFile << " <" << typeName << " rawId=\"" << rawId << "\" />" << std::endl;
227  }
228  else {
229  if (alignableObjectId == align::AlignableDetUnit) {
230  CSCDetId id(rawId);
231  outputFile << " <CSCLayer endcap=\"" << id.endcap() << "\" station=\"" << id.station() << "\" ring=\"" << id.ring() << "\" chamber=\"" << id.chamber() << "\" layer=\"" << id.layer() << "\" />" << std::endl;
232  }
233  else if (alignableObjectId == align::AlignableCSCChamber) {
234  CSCDetId id(rawId);
235  outputFile << " <CSCChamber endcap=\"" << id.endcap() << "\" station=\"" << id.station() << "\" ring=\"" << id.ring() << "\" chamber=\"" << id.chamber() << "\" />" << std::endl;
236  }
237  else {
238  CSCDetId id((*alignable)->id());
239  if (alignableObjectId == align::AlignableCSCRing) {
240  outputFile << " <CSCRing endcap=\"" << id.endcap() << "\" station=\"" << id.station() << "\" ring=\"" << id.ring() << "\" />" << std::endl;
241  }
242  else if (alignableObjectId == align::AlignableCSCStation) {
243  outputFile << " <CSCStation endcap=\"" << id.endcap() << "\" station=\"" << id.station() << "\" />" << std::endl;
244  }
245  else if (alignableObjectId == align::AlignableCSCEndcap) {
246  outputFile << " <CSCEndcap endcap=\"" << id.endcap() << "\" />" << std::endl;
247  }
248  else throw cms::Exception("Alignment") << "Unknown CSC Alignable StructureType" << std::endl;
249 
250  }
251 
252  } // end if not rawId
253  } // end if CSC
254 
255  align::PositionType pos = (*alignable)->globalPosition();
256  align::RotationType rot = (*alignable)->globalRotation();
257 
258  if (m_survey) {
259  pos = (*alignable)->survey()->position();
260  rot = (*alignable)->survey()->rotation();
261  }
262 
263  std::string str_relativeto;
264  if (m_relativeto == 0) {
265  str_relativeto = std::string("none");
266  }
267 
268  else if (m_relativeto == 1) {
269  if (ideal == ideals.end() || (*ideal)->alignableObjectId() != alignableObjectId || (*ideal)->id() != (*alignable)->id()) {
270  throw cms::Exception("Alignment") << "AlignableMuon and ideal_AlignableMuon are out of sync!" << std::endl;
271  }
272 
273  align::PositionType idealPosition = (*ideal)->globalPosition();
274  align::RotationType idealRotation = (*ideal)->globalRotation();
275 
276  pos = align::PositionType(idealRotation * (pos.basicVector() - idealPosition.basicVector()));
277  rot = rot * idealRotation.transposed();
278 
279  str_relativeto = std::string("ideal");
280 
281  bool csc_debug=0;
282  if (csc_debug && !DT) {
283  CSCDetId id(rawId);
284  if(id.endcap()==1 && id.station()==1 && id.ring()==1 && id.chamber()==33 ){
285  std::cout<<" investigating "<<id<<std::endl<<(*alignable)->globalRotation()<<std::endl<<std::endl
286  <<idealRotation.transposed()<<std::endl<<std::endl<<rot<<std::endl<<std::endl;
287  double phix = atan2(rot.yz(), rot.zz());
288  double phiy = asin(-rot.xz());
289  double phiz = atan2(rot.xy(), rot.xx());
290 
291  std::cout << "phix=\"" << phix << "\" phiy=\"" << phiy << "\" phiz=\"" << phiz << std::endl;
292 
293  align::EulerAngles eulerAngles = align::toAngles((*alignable)->globalRotation());
294  std::cout << "alpha=\"" << eulerAngles(1) << "\" beta=\"" << eulerAngles(2) << "\" gamma=\"" << eulerAngles(3) << std::endl;
295  eulerAngles = align::toAngles(idealRotation);
296  std::cout << "alpha=\"" << eulerAngles(1) << "\" beta=\"" << eulerAngles(2) << "\" gamma=\"" << eulerAngles(3) << std::endl;
297  eulerAngles = align::toAngles(rot);
298  std::cout << "alpha=\"" << eulerAngles(1) << "\" beta=\"" << eulerAngles(2) << "\" gamma=\"" << eulerAngles(3) << std::endl;
299  }
300  }
301  }
302 
303  else if (m_relativeto == 2 && (*alignable)->mother() != NULL) {
304  align::PositionType globalPosition = (*alignable)->mother()->globalPosition();
305  align::RotationType globalRotation = (*alignable)->mother()->globalRotation();
306 
307  pos = align::PositionType(globalRotation * (pos.basicVector() - globalPosition.basicVector()));
308  rot = rot * globalRotation.transposed();
309 
310  str_relativeto = std::string("container");
311  }
312 
313  else assert(false); // can't happen: see constructor
314 
315  outputFile << " <setposition relativeto=\"" << str_relativeto << "\" "
316  << "x=\"" << pos.x() << "\" y=\"" << pos.y() << "\" z=\"" << pos.z() << "\" ";
317 
318  if (m_eulerAngles) {
319  align::EulerAngles eulerAngles = align::toAngles(rot);
320  outputFile << "alpha=\"" << eulerAngles(1) << "\" beta=\"" << eulerAngles(2) << "\" gamma=\"" << eulerAngles(3) << "\" />" << std::endl;
321  }
322 
323  else {
324  // the angle convention originally used in alignment, also known as "non-standard Euler angles with a Z-Y-X convention"
325  // this also gets the sign convention right
326  double phix = atan2(rot.yz(), rot.zz());
327  double phiy = asin(-rot.xz());
328  double phiz = atan2(rot.xy(), rot.xx());
329 
330  outputFile << "phix=\"" << phix << "\" phiy=\"" << phiy << "\" phiz=\"" << phiz << "\" />" << std::endl;
331  }
332 
333  if (m_survey) {
334  align::ErrorMatrix err = (*alignable)->survey()->errors();
335 
336  outputFile << " <setsurveyerr"
337  << " xx=\"" << err(0,0) << "\" xy=\"" << err(0,1) << "\" xz=\"" << err(0,2) << "\" xa=\"" << err(0,3) << "\" xb=\"" << err(0,4) << "\" xc=\"" << err(0,5)
338  << "\" yy=\"" << err(1,1) << "\" yz=\"" << err(1,2) << "\" ya=\"" << err(1,3) << "\" yb=\"" << err(1,4) << "\" yc=\"" << err(1,5)
339  << "\" zz=\"" << err(2,2) << "\" za=\"" << err(2,3) << "\" zb=\"" << err(2,4) << "\" zc=\"" << err(2,5)
340  << "\" aa=\"" << err(3,3) << "\" ab=\"" << err(3,4) << "\" ac=\"" << err(3,5)
341  << "\" bb=\"" << err(4,4) << "\" bc=\"" << err(4,5)
342  << "\" cc=\"" << err(5,5) << "\" />" << std::endl;
343  }
344 
345  else if (rawId != 0) {
346  CLHEP::HepSymMatrix err = errors[(*alignable)->id()];
347 
348  outputFile << " <setape xx=\"" << err(1,1) << "\" xy=\"" << err(1,2) << "\" xz=\"" << err(1,3)
349  << "\" yy=\"" << err(2,2) << "\" yz=\"" << err(2,3) << "\" zz=\"" << err(3,3) << "\" />" << std::endl;
350  }
351 
352  outputFile << "</operation>" << std::endl << std::endl;
353 
354  } // end if not suppressed
355 
356  // write superstructures before substructures: this is important because <setape> overwrites all substructures' APEs
357  if (ideal != ideals.end()) {
358  align::Alignables components = (*alignable)->components();
359  align::Alignables ideal_components = (*ideal)->components();
360  writeComponents(components, ideal_components, errors, outputFile, DT);
361  ++ideal; // important for synchronization in the "for" loop!
362  }
363  else {
364  align::Alignables components = (*alignable)->components();
365  align::Alignables dummy;
366  writeComponents(components, dummy, errors, outputFile, DT);
367  }
368 
369  } // end loop over alignables
370 }
T xx() const
T y() const
Definition: PV3DBase.h:62
#define NULL
Definition: scimark2.h:8
const std::string & typeToName(align::StructureType type) const
Convert type to name.
Point3DBase< Scalar, GlobalTag > PositionType
Definition: Definitions.h:30
T xy() const
T zz() const
T z() const
Definition: PV3DBase.h:63
Allows conversion between type and name, and vice-versa.
EulerAngles toAngles(const RotationType &)
Convert rotation matrix to angles about x-, y-, z-axes (frame rotation).
Definition: Utilities.cc:7
AlgebraicVector EulerAngles
Definition: Definitions.h:36
std::vector< Alignable * > Alignables
Definition: Utilities.h:28
T xz() const
TkRotation transposed() const
tuple cout
Definition: gather_cfg.py:121
math::Error< 6 >::type ErrorMatrix
Definition: Definitions.h:39
T x() const
Definition: PV3DBase.h:61
const BasicVectorType & basicVector() const
Definition: PV3DBase.h:56
void writeComponents(align::Alignables &alignables, align::Alignables &ideals, std::map< align::ID, CLHEP::HepSymMatrix > &errors, std::ofstream &outputFile, bool DT) const
T yz() const

Member Data Documentation

bool MuonAlignmentOutputXML::m_eulerAngles
private

Definition at line 59 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

std::string MuonAlignmentOutputXML::m_fileName
private

Definition at line 57 of file MuonAlignmentOutputXML.h.

Referenced by write().

int MuonAlignmentOutputXML::m_precision
private

Definition at line 60 of file MuonAlignmentOutputXML.h.

Referenced by write().

bool MuonAlignmentOutputXML::m_rawIds
private

Definition at line 59 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

int MuonAlignmentOutputXML::m_relativeto
private

Definition at line 58 of file MuonAlignmentOutputXML.h.

Referenced by MuonAlignmentOutputXML(), write(), and writeComponents().

bool MuonAlignmentOutputXML::m_suppressCSCChambers
private

Definition at line 62 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressCSCEndcaps
private

Definition at line 62 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressCSCLayers
private

Definition at line 62 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressCSCRings
private

Definition at line 62 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressCSCStations
private

Definition at line 62 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTBarrel
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTChambers
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTLayers
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTStations
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTSuperLayers
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_suppressDTWheels
private

Definition at line 61 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().

bool MuonAlignmentOutputXML::m_survey
private

Definition at line 59 of file MuonAlignmentOutputXML.h.

Referenced by writeComponents().