ATLAS Offline Software
Loading...
Searching...
No Matches
python.LArRawChannelBuilderCrestConfig Namespace Reference

Functions

 LArRawChannelBuilderAlgCfg (flags, **kwargs)

Variables

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

Function Documentation

◆ LArRawChannelBuilderAlgCfg()

python.LArRawChannelBuilderCrestConfig.LArRawChannelBuilderAlgCfg ( flags,
** kwargs )

Definition at line 9 of file LArRawChannelBuilderCrestConfig.py.

9def LArRawChannelBuilderAlgCfg(flags, **kwargs):
10
11 acc = LArADC2MeVCondAlgCfg(flags)
12
13 kwargs.setdefault("name", "LArRawChannelBuilder")
14 kwargs.setdefault("firstSample", 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 is ProductionStep.PileUpPresampling:
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 kwargs.setdefault(dspkey, sgkey)
58
59 if flags.LAr.ROD.forceIter or flags.LAr.RawChannelSource is RawChannelSource.Calculated:
60 # iterative OFC procedure
61 kwargs.setdefault('minSample',2)
62 kwargs.setdefault('maxSample',12)
63 kwargs.setdefault('minADCforIterInSigma',4)
64 kwargs.setdefault('minADCforIter',15)
65 kwargs.setdefault('defaultPhase',12)
66 nominalPeakSample=2
67 from LArConditionsCommon.LArRunFormat import getLArFormatForRun
68 larformat=getLArFormatForRun(flags.Input.RunNumbers[0],connstring="COOLONL_LAR/"+flags.IOVDb.DatabaseInstance)
69 if larformat is not None:
70 nominalPeakSample = larformat.firstSample()
71 else:
72 print("WARNING: larformat not found, use nominalPeakSample = 2")
73 nominalPeakSample = 2
74 if (nominalPeakSample > 1) :
75 kwargs.setdefault('DefaultShiftTimeSample',nominalPeakSample-2)
76 else :
77 kwargs.setdefault('DefaultShiftTimeSample',0)
78
79 acc.addEventAlgo(CompFactory.LArRawChannelBuilderIterAlg(**kwargs))
80 else:
81 #fixed OFC, as in DSP
82 acc.addEventAlgo(CompFactory.LArRawChannelBuilderAlg(**kwargs))
83
84 return acc
85
86
void print(char *figname, TCanvas *c1)

Variable Documentation

◆ acc

python.LArRawChannelBuilderCrestConfig.acc = MainServicesCfg(flags)

Definition at line 108 of file LArRawChannelBuilderCrestConfig.py.

◆ AtlasVersion

python.LArRawChannelBuilderCrestConfig.AtlasVersion

Definition at line 97 of file LArRawChannelBuilderCrestConfig.py.

◆ crestServer

python.LArRawChannelBuilderCrestConfig.crestServer

Definition at line 118 of file LArRawChannelBuilderCrestConfig.py.

◆ DBInstance

python.LArRawChannelBuilderCrestConfig.DBInstance

Definition at line 117 of file LArRawChannelBuilderCrestConfig.py.

◆ DumpLArRawChannels

python.LArRawChannelBuilderCrestConfig.DumpLArRawChannels = CompFactory.DumpLArRawChannels

Definition at line 112 of file LArRawChannelBuilderCrestConfig.py.

◆ Files

python.LArRawChannelBuilderCrestConfig.Files

Definition at line 96 of file LArRawChannelBuilderCrestConfig.py.

◆ flags

python.LArRawChannelBuilderCrestConfig.flags = initConfigFlags()

Definition at line 95 of file LArRawChannelBuilderCrestConfig.py.

◆ GeometryTile

python.LArRawChannelBuilderCrestConfig.GeometryTile

Definition at line 101 of file LArRawChannelBuilderCrestConfig.py.

◆ GlobalTag

python.LArRawChannelBuilderCrestConfig.GlobalTag

Definition at line 114 of file LArRawChannelBuilderCrestConfig.py.

◆ isMC

python.LArRawChannelBuilderCrestConfig.isMC

Definition at line 100 of file LArRawChannelBuilderCrestConfig.py.

◆ OutputLevel

python.LArRawChannelBuilderCrestConfig.OutputLevel

Definition at line 116 of file LArRawChannelBuilderCrestConfig.py.

◆ sequenceName

python.LArRawChannelBuilderCrestConfig.sequenceName

Definition at line 113 of file LArRawChannelBuilderCrestConfig.py.

◆ Source

python.LArRawChannelBuilderCrestConfig.Source

Definition at line 115 of file LArRawChannelBuilderCrestConfig.py.