Collaboration diagram for ObfCoordsAlg:

Public Member Functions | |
| ObfCoordsAlg (const std::string &name, ISvcLocator *pSvcLocator) | |
| StatusCode | initialize () |
| StatusCode | execute () |
| StatusCode | finalize () |
Private Attributes | |
| ObfCworker * | m_worker |
| this guy does the work! | |
| int | m_count |
Definition at line 34 of file ObfCoordsAlg.cxx.
|
||||||||||||
|
Definition at line 77 of file ObfCoordsAlg.cxx.
00078 : Algorithm(name, pSvcLocator) 00079 , m_count(0) 00080 { 00081 declareProperty("TreeName", treename="MeritTuple"); 00082 } |
|
|
Definition at line 106 of file ObfCoordsAlg.cxx. References ObfCworker::evaluate(), m_count, and m_worker.
|
|
|
Definition at line 120 of file ObfCoordsAlg.cxx.
00121 {
00122 return StatusCode::SUCCESS;
00123 }
|
|
|
Definition at line 84 of file ObfCoordsAlg.cxx. References m_worker, and rootTupleSvc.
00085 {
00086 StatusCode sc = StatusCode::SUCCESS;
00087
00088 MsgStream log(msgSvc(), name());
00089
00090 // Use the Job options service to get the Algorithm's parameters
00091 setProperties();
00092
00093 // get a pointer to RootTupleSvc
00094 if( (sc = service("RootTupleSvc", rootTupleSvc, true) ). isFailure() ) {
00095 log << MSG::ERROR << " failed to get the RootTupleSvc" << endreq;
00096 return sc;
00097 }
00098 m_worker = new ObfCworker();
00099
00100 // get the GPS instance
00101 gps = astro::GPS::instance();
00102
00103 return sc;
00104 }
|
|
|
Definition at line 46 of file ObfCoordsAlg.cxx. Referenced by execute(). |
|
|
this guy does the work!
Definition at line 44 of file ObfCoordsAlg.cxx. Referenced by execute(), and initialize(). |
1.3.3