ATLAS Offline Software
Loading...
Searching...
No Matches
LArNewCalib_PhysAutoCorr.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 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="LArPhysAutoCorr", help='Output root file name', type=str)
19 parser.add_argument('-n','--outsqlite', dest='outsql', default="mysql_acorr.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_PileUpAutoCorrConfig import LArPileUpAutoCorrCfg
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 if args.insqlitefile.startswith("/"):
56 flags.LArCalib.Input.Database = args.insqlitefile
57 else:
58 flags.LArCalib.Input.Database = args.outpdir + "/" + args.insqlitefile
59
60 # pileup normalisation
61 flags.LArCalib.OFC.Ncoll = 60
62 flags.LArCalib.OFC.Nsamples = 32
63 from AthenaCommon.SystemOfUnits import ns
64 flags.Beam.BunchSpacing = 25.*ns
65 flags.Beam.NumberOfCollisions = flags.LArCalib.OFC.Ncoll
66
67 # others flags settings
68 flags.LArCalib.isSC = args.supercells
69 flags.LArCalib.Input.SubDet=args.subdet
70
71 #Configure the Bad-Channel database we are reading
72 #(the AP typically uses a snapshot in an sqlite file
73 flags.LArCalib.BadChannelDB = args.badsql
74
75 #Output of this job
76 OutputPoolFileName = args.outprefix+"_"+args.run
77 if args.subdet != "":
78 OutputPoolFileName += "_"+args.subdet
79 OutputPoolFileName += ".pool.root"
80
81 idx=OutputPoolFileName.find('.pool.root')
82 if idx != -1:
83 OutputRootFileName = OutputPoolFileName[0:idx]+'.root'
84 else:
85 OutputRootFileName = OutputPoolFileName+'.root'
86
87 flags.LArCalib.Output.ROOTFile = args.outrdir + "/" + OutputRootFileName
88 flags.LArCalib.Output.POOLFile = args.outpdir + "/" + OutputPoolFileName
89 if args.outsql.startswith("/"):
90 flags.IOVDb.DBConnection="sqlite://;schema=" + args.outsql +";dbname=CONDBR2"
91 else:
92 flags.IOVDb.DBConnection="sqlite://;schema="+args.outpdir + "/" + args.outsql +";dbname=CONDBR2"
93
94 #The global tag we are working with
95 flags.IOVDb.GlobalTag = "LARCALIB-RUN2-00"
96
97 from AthenaConfiguration.TestDefaults import defaultGeometryTags
98 flags.GeoModel.AtlasVersion = defaultGeometryTags.RUN3
99
100 #Define the global output Level:
101 from AthenaCommon.Constants import INFO
102 flags.Exec.OutputLevel = INFO
103
104 flags.lock()
105
106 cfg=MainServicesCfg(flags)
107
108 cfg.merge(LArPileUpAutoCorrCfg(flags))
109
110 # uncomment in case a debug is needed:
111 #from AthenaCommon.Constants import DEBUG
112 #cfg.getService("MessageSvc").OutputLevel = DEBUG
113 cfg.getService("MessageSvc").defaultLimit = 9999999 # all messages
114
115 #run the application
116 cfg.run(1)
117
void print(char *figname, TCanvas *c1)