ATLAS Offline Software
Loading...
Searching...
No Matches
LArNewCalib_PhysOFC.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
6if __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 PhysWave and PhysAutocorr`', 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="LArPhysOFC", help='Output root file name', type=str)
19 parser.add_argument('-n','--outsqlite', dest='outsql', default="mysql_physofc.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_OFCPhysConfig import LArOFCPhysCfg
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
43 flags=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 gainNumMap={"HIGH":0,"MEDIUM":1,"LOW":2}
53 flags.LArCalib.Gain=gainNumMap[args.gain.upper()]
54
55 flags.LArCalib.Input.Database = args.outpdir + "/" + args.insqlitefile
56
57 # pileup normalisation
58 flags.LArCalib.OFC.Ncoll = 60
59
60 if args.supercells:
61 flags.LArCalib.OFC.UsePhysCalibTDiff = False
62
63 # others flags settings
64 flags.LArCalib.isSC = args.supercells
65 flags.LArCalib.Input.SubDet=args.subdet
66
67 #Configure the Bad-Channel database we are reading
68 #(the AP typically uses a snapshot in an sqlite file
69 flags.LArCalib.BadChannelDB = args.badsql
70
71 #Output of this job
72 OutputPoolFileName = args.outprefix+"_"+args.run
73 if args.subdet != "":
74 OutputPoolFileName += "_"+args.subdet
75 OutputPoolFileName += ".pool.root"
76
77 idx=OutputPoolFileName.find('.pool.root')
78 if idx != -1:
79 OutputRootFileName = OutputPoolFileName[0:idx]+'.root'
80 else:
81 OutputRootFileName = OutputPoolFileName+'.root'
82
83 flags.LArCalib.Output.ROOTFile = args.outrdir + "/" + OutputRootFileName
84 flags.LArCalib.Output.POOLFile = args.outpdir + "/" + OutputPoolFileName
85 flags.IOVDb.DBConnection="sqlite://;schema="+args.outpdir + "/" + args.outsql +";dbname=CONDBR2"
86
87 #The global tag we are working with
88 flags.IOVDb.GlobalTag = "LARCALIB-RUN2-00"
89
90 from AthenaConfiguration.TestDefaults import defaultGeometryTags
91 flags.GeoModel.AtlasVersion = defaultGeometryTags.RUN3
92
93 #Define the global output Level:
94 from AthenaCommon.Constants import INFO
95 flags.Exec.OutputLevel = INFO
96
97 flags.lock()
98
99 cfg=MainServicesCfg(flags)
100
101 cfg.merge(LArOFCPhysCfg(flags))
102
103 cfg.getService("MessageSvc").defaultLimit = 9999999 # all messages
104 #run the application
105 cfg.run(1)
106
107 #build tag hierarchy in output sqlite file
108 import subprocess
109 cmdline = (['/afs/cern.ch/user/l/larcalib/LArDBTools/python/BuildTagHierarchy.py',args.outpdir + "/" + args.outsql , flags.IOVDb.GlobalTag])
110 print(cmdline)
111 try:
112 subprocess.run(cmdline, check=True)
113 except Exception as e:
114 print('Could not create tag hierarchy in output sqlite file !!!!')
115 sys.exit(-1)
116
void print(char *figname, TCanvas *c1)