| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

In This Package:

DsAlg.cc

Go to the documentation of this file.
00001 #include "DsAlg.h"
00002 #include "GaudiKernel/DeclareFactoryEntries.h"
00003 #include "GiGa/IGiGaSvc.h"
00004 #include "GiGa/IGiGaSetUpSvc.h"
00005 
00006 DECLARE_ALGORITHM_FACTORY( DsAlg );
00007 
00008 
00009 DsAlg::DsAlg(const std::string& name,
00010              ISvcLocator* pSvcLocator)
00011     : GaudiAlgorithm(name,pSvcLocator)
00012 {
00013     declareProperty("GiGaSetupService", m_gigaSetupSvcName = "GiGa");
00014 }
00015 
00016 DsAlg::~DsAlg()
00017 {
00018 }
00019 
00020 StatusCode DsAlg::initialize()
00021 {
00022     info() << "DsAlg::initialize()" << endreq;
00023 
00024     StatusCode sc = GaudiAlgorithm::initialize();
00025     if (sc.isFailure()) return sc;
00026 
00027     IGiGaSetUpSvc* setup = svc<IGiGaSetUpSvc>(m_gigaSetupSvcName);
00028 
00029 
00030     return StatusCode::SUCCESS;
00031 }
00032 
00033 StatusCode DsAlg::execute()
00034 {
00035     return StatusCode::SUCCESS;    
00036 }
00037 
00038 StatusCode DsAlg::finalize()
00039 {
00040     return StatusCode::SUCCESS;
00041 }
00042  
| Classes | Job Modules | Data Objects | Services | Algorithms | Tools | Packages | Directories | Tracs |

Generated on Mon Apr 11 20:53:23 2011 for DetSim by doxygen 1.4.7