1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
#ifndef CommonDet_MuonGeomDet_H
#define CommonDet_MuonGeomDet_H
#include "Geometry/CommonTopologies/interface/GeomDet.h"
#include "DataFormats/GeometryCommonDetAlgo/interface/LocalErrorExtended.h"
class MuonGeomDet : public GeomDet {
protected:
explicit MuonGeomDet(Plane* plane) : GeomDet(plane), theLocalAlignmentError(InvalidError()) {}
explicit MuonGeomDet(const ReferenceCountingPointer<Plane>& plane)
: GeomDet(plane), theLocalAlignmentError(InvalidError()) {}
public:
/// Return local alligment error
LocalErrorExtended const& localAlignmentError() const { return theLocalAlignmentError; }
private:
LocalErrorExtended theLocalAlignmentError;
private:
bool setAlignmentPositionError(const AlignmentPositionError& ape) final;
};
#endif
|