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