Back to home page

Project CMSSW displayed by LXR

 
 

    


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

0001 #ifndef Alignment_CommonAlignment_AlignmentUserVariables_h
0002 #define Alignment_CommonAlignment_AlignmentUserVariables_h
0003 
0004 /// (Abstract) Base class for alignment algorithm user variables
0005 
0006 class AlignmentUserVariables {
0007 public:
0008   virtual ~AlignmentUserVariables() {}
0009   // derived class must implement clone method
0010   // (should be simply copy constructor)
0011   virtual AlignmentUserVariables* clone(void) const = 0;
0012 };
0013 
0014 #endif