#include <ShowerDemoBase.h>
Inheritance diagram for FastShower::ShowerDemoBase:
Public Methods | |
virtual | ~ShowerDemoBase () |
virtual void | initialise () |
virtual void | execute () |
virtual void | finalise () const |
virtual GridletForger * | gridletForger () const |
Private Attributes | |
GridletForger * | m_gridletForger |
std::ostream | m_ofile |
|
Definition at line 27 of file ShowerDemoBase.h.
00027 {}; |
|
Implements FastShower::IShowerDemo. Definition at line 14 of file ShowerDemoBase.cxx. References gridletForger(), m_gridletForger, and FastShower::IDebug::ping().
00014 { 00015 cout<<"ShowerDemoBase - initialising"<<endl; 00016 m_gridletForger = new GridletForger(); 00017 cout<<"*****************************************"<<endl; 00018 cout<<"* GridletForger Structure *"<<endl; 00019 cout<<"*****************************************"<<endl; 00020 ComplexPinger p; 00021 IDebug* gfDbg = gridletForger(); 00022 gfDbg->ping(p); 00023 } |
|
Implements FastShower::IShowerDemo. Reimplemented in FastShower::RTest, and FastShower::ShowerDemoMoni. Definition at line 25 of file ShowerDemoBase.cxx.
00025 { 00026 } |
|
Implements FastShower::IShowerDemo. Reimplemented in FastShower::RTest, and FastShower::ShowerDemoMoni. Definition at line 28 of file ShowerDemoBase.cxx.
00028 { 00029 } |
|
Implements FastShower::IShowerDemo. Definition at line 31 of file ShowerDemoBase.cxx. Referenced by initialise().
00031 { 00032 return m_gridletForger; 00033 } |
|
Definition at line 34 of file ShowerDemoBase.h. Referenced by initialise(). |
|
Definition at line 35 of file ShowerDemoBase.h. |