BOSS 8.0.0
BESIII Offline Software System
Loading...
Searching...
No Matches
JobInputRaw.cxx
Go to the documentation of this file.
1#include "GaudiKernel/ISvcLocator.h"
2#include "RawDataCnvSvc/IRawDataInputSvc.h"
3
4namespace DetVerSvcPack {
5
6 int funcInputRaw( ISvcLocator* svcLct ) {
7 IRawDataInputSvc* svc = 0;
8 StatusCode sc = svcLct->service( "RawDataInputSvc", svc, false );
9 if ( sc.isSuccess() )
10 {
11 if ( svc != 0 ) { return svc->runNo(); }
12 }
13 return -1;
14 }
15
16 extern int ( *pf_helper )( ISvcLocator* );
17
18 // initialize function pointer: pf_helper
22
24} // namespace DetVerSvcPack
virtual uint32_t runNo()=0
int(* pf_helper)(ISvcLocator *)
Definition DetVerSvc.cxx:21
InputRawInit init
int funcInputRaw(ISvcLocator *svcLct)