Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-04-06 11:56:38

0001 #ifndef Alignment_MuonAlignment_AlignableDTSuperLayer_H
0002 #define Alignment_MuonAlignment_AlignableDTSuperLayer_H
0003 
0004 /** \class AlignableDTSuperLayer
0005  *  The alignable muon DT superlayer.
0006  *
0007  *  $Date: Wed Mar 26 22:20:38 CET 2008 $
0008  *  $Revision: 1.0 $
0009  *  \author Jim Pivarski - Texas A&M University
0010  */
0011 
0012 #include <iosfwd>
0013 #include <iostream>
0014 #include <vector>
0015 
0016 #include "Alignment/CommonAlignment/interface/StructureType.h"
0017 #include "Alignment/CommonAlignment/interface/AlignableDet.h"
0018 
0019 #include "Geometry/CommonDetUnit/interface/GeomDet.h"
0020 #include "Alignment/CommonAlignment/interface/AlignableComposite.h"
0021 
0022 /// A muon DT SuperLayer ( an AlignableDet )
0023 
0024 class AlignableDTSuperLayer : public AlignableDet {
0025 public:
0026   friend std::ostream &operator<<(std::ostream &, const AlignableDTSuperLayer &);
0027 
0028   /// Constructor
0029   AlignableDTSuperLayer(const GeomDet *geomDet);
0030 };
0031 
0032 #endif  // ALIGNABLE_DT_SUPERLAYER_H