ATLAS Offline Software
Functions | Variables
python.LArRawChannelBuilderAlgConfig Namespace Reference

Functions

def LArRawChannelBuilderAlgCfg (flags, **kwargs)
 

Variables

 flags = initConfigFlags()
 
 Files
 
 AtlasVersion
 
 GlobalTag
 
 isMC
 
 GeometryTile
 
 acc = MainServicesCfg(flags)
 
 DumpLArRawChannels = CompFactory.DumpLArRawChannels
 
 sequenceName
 

Function Documentation

◆ LArRawChannelBuilderAlgCfg()

def python.LArRawChannelBuilderAlgConfig.LArRawChannelBuilderAlgCfg (   flags,
**  kwargs 
)

Definition at line 9 of file LArRawChannelBuilderAlgConfig.py.

9 def LArRawChannelBuilderAlgCfg(flags, **kwargs):
10 
11  acc = LArADC2MeVCondAlgCfg(flags)
12 
13  kwargs.setdefault("name", "LArRawChannelBuilder")
14  kwargs.setdefault("firstSample", flags.LAr.ROD.nPreceedingSamples if flags.LAr.ROD.nPreceedingSamples!=0 else flags.LAr.ROD.FirstSample)
15  obj = "AthenaAttributeList"
16  dspkey = 'Run2DSPThresholdsKey'
17  from IOVDbSvc.IOVDbSvcConfig import addFolders
18  if flags.Input.isMC:
19  # need OFC configuration, which includes appropriate ElecCalibDb
20  acc.merge(LArOFCCondAlgCfg(flags))
21  kwargs.setdefault("LArRawChannelKey", "LArRawChannels")
22  kwargs.setdefault("ShapeKey", "LArShapeSym")
23  if flags.GeoModel.Run is LHCPeriod.Run1: # back to flat threshold
24  kwargs.setdefault("useDB", False)
25  dspkey = ''
26  else:
27  fld="/LAR/NoiseOfl/DSPThresholds"
28  sgkey=fld
29  dbString="OFLP200"
30  dbInstance="LAR_OFL"
31  acc.merge(addFolders(flags,fld, dbInstance, className=obj, db=dbString))
32 
33  if flags.Common.ProductionStep in [ProductionStep.PileUpPresampling, ProductionStep.PileUpPretracking]:
34  kwargs.setdefault("LArDigitKey", flags.Overlay.BkgPrefix + "LArDigitContainer_MC")
35  else:
36  kwargs.setdefault("LArDigitKey", "LArDigitContainer_MC")
37  else:
38  acc.merge(LArElecCalibDBCfg(flags,("OFC","Shape","Pedestal")))
39  if flags.Overlay.DataOverlay:
40  kwargs.setdefault("LArDigitKey", "LArDigitContainer_MC")
41  kwargs.setdefault("LArRawChannelKey", "LArRawChannels")
42  else:
43  kwargs.setdefault("LArRawChannelKey", "LArRawChannels_FromDigits")
44  if 'COMP200' in flags.IOVDb.DatabaseInstance:
45  fld='/LAR/Configuration/DSPThreshold/Thresholds'
46  obj='LArDSPThresholdsComplete'
47  dspkey = 'Run1DSPThresholdsKey'
48  sgkey='LArDSPThresholds'
49  dbString = 'COMP200'
50  else:
51  fld="/LAR/Configuration/DSPThresholdFlat/Thresholds"
52  sgkey=fld
53  dbString="CONDBR2"
54  dbInstance="LAR_ONL"
55  acc.merge(addFolders(flags,fld, dbInstance, className=obj, db=dbString))
56 
57  if len (dspkey) > 0:
58  kwargs.setdefault(dspkey, sgkey)
59 
60  if flags.LAr.ROD.forceIter or flags.LAr.RawChannelSource is RawChannelSource.Calculated:
61  # iterative OFC procedure
62  kwargs.setdefault('minSample',2)
63  kwargs.setdefault('maxSample',12)
64  kwargs.setdefault('minADCforIterInSigma',4)
65  kwargs.setdefault('minADCforIter',15)
66  kwargs.setdefault('defaultPhase',12)
67  nominalPeakSample=2
68  from LArConditionsCommon.LArRunFormat import getLArFormatForRun
69  larformat=getLArFormatForRun(flags.Input.RunNumbers[0],connstring="COOLONL_LAR/"+flags.IOVDb.DatabaseInstance)
70  if larformat is not None:
71  nominalPeakSample = larformat.firstSample()
72  else:
73  print("WARNING: larformat not found, use nominalPeakSample = 2")
74  nominalPeakSample = 2
75  if (nominalPeakSample > 1) :
76  kwargs.setdefault('DefaultShiftTimeSample',nominalPeakSample-2)
77  else :
78  kwargs.setdefault('DefaultShiftTimeSample',0)
79 
80  acc.addEventAlgo(CompFactory.LArRawChannelBuilderIterAlg(**kwargs))
81  else:
82  #fixed OFC, as in DSP
83  acc.addEventAlgo(CompFactory.LArRawChannelBuilderAlg(**kwargs))
84 
85  return acc
86 
87 

Variable Documentation

◆ acc

python.LArRawChannelBuilderAlgConfig.acc = MainServicesCfg(flags)

Definition at line 110 of file LArRawChannelBuilderAlgConfig.py.

◆ AtlasVersion

python.LArRawChannelBuilderAlgConfig.AtlasVersion

Definition at line 98 of file LArRawChannelBuilderAlgConfig.py.

◆ DumpLArRawChannels

python.LArRawChannelBuilderAlgConfig.DumpLArRawChannels = CompFactory.DumpLArRawChannels

Definition at line 114 of file LArRawChannelBuilderAlgConfig.py.

◆ Files

python.LArRawChannelBuilderAlgConfig.Files

Definition at line 97 of file LArRawChannelBuilderAlgConfig.py.

◆ flags

python.LArRawChannelBuilderAlgConfig.flags = initConfigFlags()

Definition at line 96 of file LArRawChannelBuilderAlgConfig.py.

◆ GeometryTile

python.LArRawChannelBuilderAlgConfig.GeometryTile

Definition at line 103 of file LArRawChannelBuilderAlgConfig.py.

◆ GlobalTag

python.LArRawChannelBuilderAlgConfig.GlobalTag

Definition at line 99 of file LArRawChannelBuilderAlgConfig.py.

◆ isMC

python.LArRawChannelBuilderAlgConfig.isMC

Definition at line 102 of file LArRawChannelBuilderAlgConfig.py.

◆ sequenceName

python.LArRawChannelBuilderAlgConfig.sequenceName

Definition at line 115 of file LArRawChannelBuilderAlgConfig.py.

python.LArElecCalibDBConfig.LArElecCalibDBCfg
def LArElecCalibDBCfg(flags, condObjs)
Definition: LArElecCalibDBConfig.py:47
python.LArRecUtilsConfig.LArOFCCondAlgCfg
def LArOFCCondAlgCfg(flags, name='LArOFCCondAlg', **kwargs)
Definition: LArRecUtilsConfig.py:33
python.LArADC2MeVCondAlgConfig.LArADC2MeVCondAlgCfg
def LArADC2MeVCondAlgCfg(flags)
Definition: LArADC2MeVCondAlgConfig.py:6
python.LArRawChannelBuilderAlgConfig.LArRawChannelBuilderAlgCfg
def LArRawChannelBuilderAlgCfg(flags, **kwargs)
Definition: LArRawChannelBuilderAlgConfig.py:9
LArRunFormat
python.IOVDbSvcConfig.addFolders
def addFolders(flags, folderStrings, detDb=None, className=None, extensible=False, tag=None, db=None, modifiers='')
Definition: IOVDbSvcConfig.py:72
python.LArRunFormat.getLArFormatForRun
def getLArFormatForRun(run, quiet=False, connstring="COOLONL_LAR/CONDBR2")
Definition: LArRunFormat.py:58
Muon::print
std::string print(const MuPatSegment &)
Definition: MuonTrackSteering.cxx:28