Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 //   COCOA class header file

0002 //Id:  EntryAngleAffAngles.h

0003 //CAT: Model

0004 //

0005 //   class for the three entries that make the affine frame angles

0006 //

0007 //   History: v1.0

0008 //   Pedro Arce

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