CMS 3D CMS Logo

/data/git/CMSSW_5_3_11_patch5/src/Alignment/CocoaDDLObjects/interface/CocoaSolidShape.h

Go to the documentation of this file.
00001 //   COCOA class header file
00002 //Id:  CocoaSolidShape.h
00003 //CAT: Model
00004 //
00005 //   Class to manage the sets of fitted entries (one set per each measurement data set)
00006 // 
00007 //   History: v1.0 
00008 //   Pedro Arce
00009 
00010 #ifndef _CocoaSolidShape_HH
00011 #define _CocoaSolidShape_HH
00012 
00013 #include "Alignment/CocoaUtilities/interface/CocoaGlobals.h"
00014 
00015 
00016 class CocoaSolidShape
00017 {
00018 
00019 public:
00020   //---------- Constructors / Destructor
00021   CocoaSolidShape( ALIstring type );
00022   virtual ~CocoaSolidShape(){ };
00023 
00024   ALIstring getType() const {
00025     return theType; }
00026 
00027   //  ALIbool operator==(const CocoaSolidShape& mate );
00028 
00029 private:
00030 
00031   ALIstring theType;
00032 
00033 };
00034 
00035 #endif
00036