00001 #ifndef VIS_ROOT_MODEL_VIS_ROOT_REP_H 00002 # define VIS_ROOT_MODEL_VIS_ROOT_REP_H 00003 00004 //<<<<<< INCLUDES >>>>>> 00005 # include "VisRoot/VisRootModel/interface/config.h" 00006 # include "Iguana/Framework/interface/IgRep.h" 00007 00008 //<<<<<< PUBLIC DEFINES >>>>>> 00009 //<<<<<< PUBLIC CONSTANTS >>>>>> 00010 //<<<<<< PUBLIC TYPES >>>>>> 00011 class VisRootModel; 00012 class IgModel; 00013 class TObject; 00014 class IgRepContext; 00015 class TVirtualPad; 00016 00017 00018 //<<<<<< PUBLIC VARIABLES >>>>>> 00019 //<<<<<< PUBLIC FUNCTIONS >>>>>> 00020 //<<<<<< CLASS DECLARATIONS >>>>>> 00021 00022 class VIS_ROOT_MODEL_API VisRootRep : public IgRep 00023 { 00024 public: 00025 VisRootRep (VisRootModel *model); 00026 ~VisRootRep (void); 00027 00028 // implicit copy constructor 00029 // implicit assignment operator 00030 // implicit destructor 00031 00032 virtual IgRepContext * context (void) const; 00033 virtual IgModel * model (void) const; 00034 virtual void clear (void); 00035 00036 void tObject (TObject *obj); 00037 TObject * tObject (void) const; 00038 void pad (TVirtualPad * pad); 00039 TVirtualPad * pad (void) const; 00040 protected: 00041 void context (IgRepContext *context); 00042 private: 00043 VisRootModel * m_model; 00044 TObject * m_tObject; 00045 IgRepContext * m_context; 00046 TVirtualPad * m_pad; 00047 }; 00048 00049 //<<<<<< INLINE PUBLIC FUNCTIONS >>>>>> 00050 //<<<<<< INLINE MEMBER FUNCTIONS >>>>>> 00051 00052 #endif // VIS_ROOT_MODEL_VIS_ROOT_REP_H