File indexing completed on 2024-09-07 04:34:25
0001
0002
0003
0004
0005
0006
0007
0008
0009
0010 #ifndef _ENTRYANGLEAFFANGLES_HH
0011 #define _ENTRYANGLEAFFANGLES_HH
0012
0013 #include "Alignment/CocoaModel/interface/EntryAngle.h"
0014
0015 class EntryAngleAffAngles : public EntryAngle {
0016 public:
0017 EntryAngleAffAngles(const ALIstring& type);
0018 ~EntryAngleAffAngles() override {}
0019
0020 virtual void FillName(const ALIstring& name);
0021 void displace(ALIdouble disp) override;
0022 void displaceOriginal(ALIdouble disp) override;
0023 void displaceOriginalOriginal(ALIdouble disp) override;
0024 ALIdouble valueDisplaced() const override;
0025 ALIdouble checkDiff(const CLHEP::Hep3Vector& axis,
0026 const CLHEP::Hep3Vector& axisOrig,
0027 const std::vector<double>& localrot,
0028 const std::vector<double>& localrotorig) const;
0029 };
0030
0031 #endif