Collaboration diagram for McCoordsAlg:

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