|
||||
File indexing completed on 2024-09-07 04:34:25
0001 // COCOA class header file 0002 // Id: CocoaSolidShape.h 0003 // CAT: Model 0004 // 0005 // Class to manage the sets of fitted entries (one set per each measurement 0006 // data set) 0007 // 0008 // History: v1.0 0009 // Pedro Arce 0010 0011 #ifndef _CocoaSolidShape_HH 0012 #define _CocoaSolidShape_HH 0013 0014 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h" 0015 0016 class CocoaSolidShape { 0017 public: 0018 //---------- Constructors / Destructor 0019 CocoaSolidShape(ALIstring type); 0020 virtual ~CocoaSolidShape() {} 0021 0022 ALIstring getType() const { return theType; } 0023 0024 // ALIbool operator==(const CocoaSolidShape& mate ); 0025 0026 private: 0027 ALIstring theType; 0028 }; 0029 0030 #endif
[ Source navigation ] | [ Diff markup ] | [ Identifier search ] | [ general search ] |
This page was automatically generated by the 2.2.1 LXR engine. The LXR team |