ATLAS Offline Software
Loading...
Searching...
No Matches
MuonCalibStreamCnvSvcConfig Namespace Reference

Functions

 MuonCalibStreamFileInputSvcCfg (flags, name='MuonCalibStreamFileInputSvc')
 MuonCalibStreamCnvSvcCfg (flags, name='MuonCalibStreamCnvSvc')
 MuonCalibStreamAddressProviderSvcCfg (flags, name='MuonCalibStreamAddressProviderSvc')
 MuonCalibStreamDataProviderSvcCfg (flags, name='MuonCalibStreamDataProviderSvc')
 EventSelectorMuonCalibStreamCfg (flags, name='EventSelectorMuonCalibStream')
 MuonCalibRunLumiBlockCoolSvcCfg (flags, name='MuonCalibRunLumiBlockCoolSvc')

Function Documentation

◆ EventSelectorMuonCalibStreamCfg()

MuonCalibStreamCnvSvcConfig.EventSelectorMuonCalibStreamCfg ( flags,
name = 'EventSelectorMuonCalibStream' )

Definition at line 37 of file MuonCalibStreamCnvSvcConfig.py.

37def EventSelectorMuonCalibStreamCfg(flags, name = 'EventSelectorMuonCalibStream'):
38
39 result = ComponentAccumulator()
40 result.addService(CompFactory.EventSelectorMuonCalibStream(name), primary = True)
41
42 return result
43

◆ MuonCalibRunLumiBlockCoolSvcCfg()

MuonCalibStreamCnvSvcConfig.MuonCalibRunLumiBlockCoolSvcCfg ( flags,
name = 'MuonCalibRunLumiBlockCoolSvc' )

Definition at line 44 of file MuonCalibStreamCnvSvcConfig.py.

44def MuonCalibRunLumiBlockCoolSvcCfg(flags, name = 'MuonCalibRunLumiBlockCoolSvc'):
45
46 result = ComponentAccumulator()
47 result.addService(CompFactory.MuonCalibRunLumiBlockCoolSvc(name), primary = True)
48
49 return result
50

◆ MuonCalibStreamAddressProviderSvcCfg()

MuonCalibStreamCnvSvcConfig.MuonCalibStreamAddressProviderSvcCfg ( flags,
name = 'MuonCalibStreamAddressProviderSvc' )

Definition at line 22 of file MuonCalibStreamCnvSvcConfig.py.

22def MuonCalibStreamAddressProviderSvcCfg(flags, name = 'MuonCalibStreamAddressProviderSvc'):
23
24 result = ComponentAccumulator()
25
26 result.addService(CompFactory.MuonCalibStreamAddressProviderSvc(name), primary = True)
27
28 return result
29

◆ MuonCalibStreamCnvSvcCfg()

MuonCalibStreamCnvSvcConfig.MuonCalibStreamCnvSvcCfg ( flags,
name = 'MuonCalibStreamCnvSvc' )

Definition at line 14 of file MuonCalibStreamCnvSvcConfig.py.

14def MuonCalibStreamCnvSvcCfg(flags, name = 'MuonCalibStreamCnvSvc'):
15
16 result = ComponentAccumulator()
17
18 result.addService(CompFactory.MuonCalibStreamCnvSvc(name), primary = True)
19
20 return result
21

◆ MuonCalibStreamDataProviderSvcCfg()

MuonCalibStreamCnvSvcConfig.MuonCalibStreamDataProviderSvcCfg ( flags,
name = 'MuonCalibStreamDataProviderSvc' )

Definition at line 30 of file MuonCalibStreamCnvSvcConfig.py.

30def MuonCalibStreamDataProviderSvcCfg(flags, name = 'MuonCalibStreamDataProviderSvc'):
31
32 result = ComponentAccumulator()
33 result.addService(CompFactory.MuonCalibStreamDataProviderSvc(name,RunNumber = flags.Input.RunNumbers[0],LumiBlockNumberFromCool = False, RunNumberFromCool=False), primary = True)
34
35 return result
36

◆ MuonCalibStreamFileInputSvcCfg()

MuonCalibStreamCnvSvcConfig.MuonCalibStreamFileInputSvcCfg ( flags,
name = 'MuonCalibStreamFileInputSvc' )

Definition at line 6 of file MuonCalibStreamCnvSvcConfig.py.

6def MuonCalibStreamFileInputSvcCfg(flags, name = 'MuonCalibStreamFileInputSvc'):
7
8 result = ComponentAccumulator()
9
10 result.addService(CompFactory.MuonCalibStreamFileInputSvc(name, InputFiles = flags.Input.Files, DumpStream = 1),primary =True)
11
12 return result
13