Back to home page

Project CMSSW displayed by LXR

 
 

    


File indexing completed on 2024-09-07 04:34:25

0001 //   COCOA class header file

0002 //Id:  EntryLengthAffCentre.h

0003 //CAT: Model

0004 //

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

0006 //

0007 //   History: v1.0

0008 //   Pedro Arce

0009 
0010 #ifndef _ENTRYLengthAffCentre_HH
0011 #define _ENTRYLengthAffCentre_HH
0012 
0013 #include "Alignment/CocoaModel/interface/EntryLength.h"
0014 
0015 class EntryLengthAffCentre : public EntryLength {
0016 public:
0017   EntryLengthAffCentre(const ALIstring& type);
0018   ~EntryLengthAffCentre() 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 valueInGlobalReferenceFrame() const override;
0025   ALIdouble valueDisplaced() const override;
0026 };
0027 
0028 #endif