ATLAS Offline Software
LArNewCalib_tauR.py
Go to the documentation of this file.
1 #!/usr/bin/env python
2 #
3 # Copyright (C) 2002-2023 CERN for the benefit of the ATLAS collaboration
4 #
5 
6 if __name__=='__main__':
7 
8  import os,sys
9  import argparse
10 
11  # now process the CL options and assign defaults
12  parser = argparse.ArgumentParser(formatter_class=argparse.ArgumentDefaultsHelpFormatter)
13  parser.add_argument('-r','--run', dest='run', default='00408918', help='Run number string as in input filename', type=str)
14  parser.add_argument('-g','--gain', dest='gain', default="MEDIUM", help='Gain string', type=str)
15  parser.add_argument('-d','--insqlitefile', dest='insqlitefile', default="", help='Input sqlite file with CaliWaves`', type=str)
16  parser.add_argument('-e','--outrdir', dest='outrdir', default="/eos/atlas/atlascerngroupdisk/det-larg/Temp/Weekly/ntuples", help='Output root file directory', type=str)
17  parser.add_argument('-k','--outpdir', dest='outpdir', default="/eos/atlas/atlascerngroupdisk/det-larg/Temp/Weekly/poolFiles", help='Output root file directory', type=str)
18  parser.add_argument('-l','--outprefix', dest='outprefix', default="LArRTMParams_DefaultExtraction", help='Output root file name', type=str)
19  parser.add_argument('-n','--outsqlite', dest='outsql', default="mysql_delay.db", help='Output sqlite file, in pool output dir.', type=str)
20  parser.add_argument('-c','--isSC', dest='supercells', default=False, action="store_true", help='is SC data ?')
21  parser.add_argument('-b','--badchansqlite', dest='badsql', default="SnapshotBadChannel.db", help='Input sqlite file for bad channels', type=str)
22  parser.add_argument('-m','--subdet', dest='subdet', default="EMB", help='Subdetector, EMB, EMEC, HEC or FCAL', type=str)
23  parser.add_argument('-s','--side', dest='side', default="C", help='Detector side empty (means both), C or A', type=str)
24 
25  args = parser.parse_args()
26  if help in args and args.help is not None and args.help:
27  parser.print_help()
28  sys.exit(0)
29 
30  for _, value in args._get_kwargs():
31  if value is not None:
32  print(value)
33 
34  # now set flags according parsed options
35 
36  from LArCalibProcessing.LArCalib_RTMParamsConfig import LArRTMParamsCfg
37 
38  #Import the MainServices (boilerplate)
39  from AthenaConfiguration.MainServicesConfig import MainServicesCfg
40 
41  #Import the flag-container that is the arguemnt to the configuration methods
42  from AthenaConfiguration.AllConfigFlags import initConfigFlags
44  from LArCalibProcessing.LArCalibConfigFlags import addLArCalibFlags
45  addLArCalibFlags(flags, args.supercells)
46 
47  #Now we set the flags as required for this particular job:
48  #The following flags help finding the input bytestream files:
49  flags.Input.Files=[]
50  flags.LArCalib.Input.Files = [ ]
51  flags.LArCalib.Input.RunNumbers = [int(args.run),]
52  flags.Input.RunNumbers=flags.LArCalib.Input.RunNumbers
53  gainNumMap={"HIGH":0,"MEDIUM":1,"LOW":2}
54  flags.LArCalib.Gain=gainNumMap[args.gain.upper()]
55 
56  flags.LArCalib.Input.Database = args.outpdir + "/" + args.insqlitefile
57 
58  # others flags settings
59  flags.LArCalib.isSC = args.supercells
60  flags.LArCalib.Input.SubDet=args.subdet
61 
62  #Configure the Bad-Channel database we are reading
63  #(the AP typically uses a snapshot in an sqlite file
64  flags.LArCalib.BadChannelDB = args.badsql
65 
66  #Output of this job
67  OutputPoolFileName = args.outprefix+"_"+args.run
68  if args.subdet!="":
69  OutputPoolFileName += "_"+args.subdet
70  OutputPoolFileName += ".pool.root"
71 
72  idx=OutputPoolFileName.find('.pool.root')
73  if idx != -1:
74  OutputRootFileName = OutputPoolFileName[0:idx]+'.root'
75  else:
76  OutputRootFileName = OutputPoolFileName+'.root'
77 
78  flags.LArCalib.Output.ROOTFile = args.outrdir + "/" + OutputRootFileName
79  flags.LArCalib.Output.POOLFile = args.outpdir + "/" + OutputPoolFileName
80  flags.IOVDb.DBConnection="sqlite://;schema="+args.outpdir + "/" + args.outsql +";dbname=CONDBR2"
81 
82 
83  #The global tag we are working with
84  flags.IOVDb.GlobalTag = "LARCALIB-RUN2-00"
85 
86  from AthenaConfiguration.TestDefaults import defaultGeometryTags
87  flags.GeoModel.AtlasVersion = defaultGeometryTags.RUN3
88 
89  #Define the global output Level:
90  from AthenaCommon.Constants import INFO
91  flags.Exec.OutputLevel = INFO
92 
93  flags.LArCalib.RTM.ExtractAll=True
94 
95  flags.lock()
96 
97  cfg=MainServicesCfg(flags)
98 
99  cfg.merge(LArRTMParamsCfg(flags))
100 
101  # switch on MT
102  cfg.getEventAlgo("LArRTMParamExtractor").nThreads=0
103 
104  #run the application
105  cfg.run(1)
106 
CaloCellPos2Ntuple.int
int
Definition: CaloCellPos2Ntuple.py:24
python.MainServicesConfig.MainServicesCfg
def MainServicesCfg(flags, LoopMgr='AthenaEventLoopMgr')
Definition: MainServicesConfig.py:252
Constants
some useful constants -------------------------------------------------—
python.LArCalib_RTMParamsConfig.LArRTMParamsCfg
def LArRTMParamsCfg(flags)
Definition: LArCalib_RTMParamsConfig.py:6
python.AllConfigFlags.initConfigFlags
def initConfigFlags()
Definition: AllConfigFlags.py:19
Muon::print
std::string print(const MuPatSegment &)
Definition: MuonTrackSteering.cxx:28
python.LArCalibConfigFlags.addLArCalibFlags
def addLArCalibFlags(flags, isSC=False)
Definition: LArCalibConfigFlags.py:3