CMS 3D CMS Logo

Classes | Functions | Variables
heppy_batch Namespace Reference

Classes

class  MyBatchManager
 

Functions

def batchScriptCERN (jobDir, remoteDir='')
 
def batchScriptIC (jobDir)
 
def batchScriptLocal (remoteDir, index)
 
def batchScriptPADOVA (index, jobDir='./')
 
def batchScriptPISA (index, remoteDir='')
 
def batchScriptPSI (index, jobDir, remoteDir='')
 

Variables

 args
 
 batchManager
 
 cfgFileName
 
 cfo
 
 components
 
 config
 
 handle
 
 heppyOptions_
 
 key
 
 listOfNames
 
 listOfValues
 
 options
 
 usage
 
 val
 
 waitingTime
 

Function Documentation

◆ batchScriptCERN()

def heppy_batch.batchScriptCERN (   jobDir,
  remoteDir = '' 
)
prepare the LSF version of the batch script, to run on LSF

Definition at line 78 of file heppy_batch.py.

References print(), python.rootplot.root2matplotlib.replace(), and nano_mu_digi_cff.strip.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

78 def batchScriptCERN( jobDir, remoteDir=''):
79  '''prepare the LSF version of the batch script, to run on LSF'''
80 
81  dirCopy = """echo 'sending the logs back' # will send also root files if copy failed
82 rm Loop/cmsswPreProcessing.root
83 cp -r Loop/* $LS_SUBCWD
84 if [ $? -ne 0 ]; then
85  echo 'ERROR: problem copying job directory back'
86 else
87  echo 'job directory copy succeeded'
88 fi"""
89 
90  if remoteDir=='':
91  cpCmd=dirCopy
92  elif remoteDir.startswith("root://eoscms.cern.ch//eos/cms/store/"):
93  cpCmd="""echo 'sending root files to remote dir'
94 export LD_LIBRARY_PATH=/usr/lib64:$LD_LIBRARY_PATH #
95 for f in Loop/*/tree*.root
96 do
97  rm Loop/cmsswPreProcessing.root
98  ff=`echo $f | cut -d/ -f2`
99  ff="${{ff}}_`basename $f | cut -d . -f 1`"
100  echo $f
101  echo $ff
102  export VO_CMS_SW_DIR=/cvmfs/cms.cern.ch
103  source $VO_CMS_SW_DIR/cmsset_default.sh
104  for try in `seq 1 3`; do
105  echo "Stageout try $try"
106  echo "/afs/cern.ch/project/eos/installation/pro/bin/eos.select mkdir {srm}"
107  /afs/cern.ch/project/eos/installation/pro/bin/eos.select mkdir {srm}
108  echo "/afs/cern.ch/project/eos/installation/pro/bin/eos.select cp `pwd`/$f {srm}/${{ff}}_{idx}.root"
109  /afs/cern.ch/project/eos/installation/pro/bin/eos.select cp `pwd`/$f {srm}/${{ff}}_{idx}.root
110  if [ $? -ne 0 ]; then
111  echo "ERROR: remote copy failed for file $ff"
112  continue
113  fi
114  echo "remote copy succeeded"
115  remsize=$(/afs/cern.ch/project/eos/installation/pro/bin/eos.select find --size {srm}/${{ff}}_{idx}.root | cut -d= -f3)
116  locsize=$(cat `pwd`/$f | wc -c)
117  ok=$(($remsize==$locsize))
118  if [ $ok -ne 1 ]; then
119  echo "Problem with copy (file sizes don't match), will retry in 30s"
120  sleep 30
121  continue
122  fi
123  echo "everything ok"
124  rm $f
125  echo root://eoscms.cern.ch/{srm}/${{ff}}_{idx}.root > $f.url
126  break
127  done
128 done
129 cp -r Loop/* $LS_SUBCWD
130 if [ $? -ne 0 ]; then
131  echo 'ERROR: problem copying job directory back'
132 else
133  echo 'job directory copy succeeded'
134 fi
135 """.format(
136  idx = jobDir[jobDir.find("_Chunk")+6:].strip("/") if '_Chunk' in jobDir else 'all',
137  srm = (""+remoteDir+jobDir[ jobDir.rfind("/") : (jobDir.find("_Chunk") if '_Chunk' in jobDir else len(jobDir)) ]).replace("root://eoscms.cern.ch/","")
138  )
139  else:
140  print("chosen location not supported yet: ", remoteDir)
141  print('path must start with /store/')
142  sys.exit(1)
143 
144  script = """#!/bin/bash
145 #BSUB -q 8nm
146 echo 'environment:'
147 echo
148 env | sort
149 # ulimit -v 3000000 # NO
150 echo 'copying job dir to worker'
151 cd $CMSSW_BASE/src
152 eval `scramv1 ru -sh`
153 # cd $LS_SUBCWD
154 # eval `scramv1 ru -sh`
155 cd -
156 cp -rf $LS_SUBCWD .
157 ls
158 cd `find . -type d | grep /`
159 echo 'running'
160 python $CMSSW_BASE/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json
161 echo
162 {copy}
163 """.format(copy=cpCmd)
164 
165  return script
166 
167 
def replace(string, replacements)
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47
def batchScriptCERN(jobDir, remoteDir='')
Definition: heppy_batch.py:78

◆ batchScriptIC()

def heppy_batch.batchScriptIC (   jobDir)
prepare a IC version of the batch script

Definition at line 264 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

264 def batchScriptIC(jobDir):
265  '''prepare a IC version of the batch script'''
266 
267 
268  cmssw_release = os.environ['CMSSW_BASE']
269  script = """#!/bin/bash
270 export X509_USER_PROXY=/home/hep/$USER/myproxy
271 source /vols/cms/grid/setup.sh
272 cd {jobdir}
273 cd {cmssw}/src
274 eval `scramv1 ru -sh`
275 cd -
276 echo 'running'
277 python {cmssw}/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json
278 echo
279 echo 'sending the job directory back'
280 mv Loop/* ./ && rm -r Loop
281 """.format(jobdir = jobDir,cmssw = cmssw_release)
282  return script
283 
def batchScriptIC(jobDir)
Definition: heppy_batch.py:264

◆ batchScriptLocal()

def heppy_batch.batchScriptLocal (   remoteDir,
  index 
)
prepare a local version of the batch script, to run using nohup

Definition at line 284 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

284 def batchScriptLocal( remoteDir, index ):
285  '''prepare a local version of the batch script, to run using nohup'''
286 
287  script = """#!/bin/bash
288 echo 'running'
289 python $CMSSW_BASE/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json
290 echo
291 echo 'sending the job directory back'
292 mv Loop/* ./
293 """
294  return script
295 
296 
def batchScriptLocal(remoteDir, index)
Definition: heppy_batch.py:284

◆ batchScriptPADOVA()

def heppy_batch.batchScriptPADOVA (   index,
  jobDir = './' 
)
prepare the LSF version of the batch script, to run on LSF

Definition at line 17 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

17 def batchScriptPADOVA( index, jobDir='./'):
18  '''prepare the LSF version of the batch script, to run on LSF'''
19  script = """#!/bin/bash
20 #BSUB -q local
21 #BSUB -J test
22 #BSUB -o test.log
23 cd {jdir}
24 echo 'PWD:'
25 pwd
26 export VO_CMS_SW_DIR=/cvmfs/cms.cern.ch
27 source $VO_CMS_SW_DIR/cmsset_default.sh
28 echo 'environment:'
29 echo
30 env > local.env
31 env
32 # ulimit -v 3000000 # NO
33 echo 'copying job dir to worker'
34 eval `scram runtime -sh`
35 ls
36 echo 'running'
37 python $CMSSW_BASE/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json >& local.output
38 exit $?
39 #echo
40 #echo 'sending the job directory back'
41 #echo cp -r Loop/* $LS_SUBCWD
42 """.format(jdir=jobDir)
43 
44  return script
45 
def batchScriptPADOVA(index, jobDir='./')
Definition: heppy_batch.py:17

◆ batchScriptPISA()

def heppy_batch.batchScriptPISA (   index,
  remoteDir = '' 
)
prepare the LSF version of the batch script, to run on LSF

Definition at line 46 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

46 def batchScriptPISA( index, remoteDir=''):
47  '''prepare the LSF version of the batch script, to run on LSF'''
48  script = """#!/bin/bash
49 #BSUB -q cms
50 echo 'PWD:'
51 pwd
52 export VO_CMS_SW_DIR=/cvmfs/cms.cern.ch
53 source $VO_CMS_SW_DIR/cmsset_default.sh
54 echo 'environment:'
55 echo
56 env > local.env
57 env
58 # ulimit -v 3000000 # NO
59 echo 'copying job dir to worker'
60 ###cd $CMSSW_BASE/src
61 eval `scramv1 runtime -sh`
62 #eval `scramv1 ru -sh`
63 # cd $LS_SUBCWD
64 # eval `scramv1 ru -sh`
65 ##cd -
66 ##cp -rf $LS_SUBCWD .
67 ls
68 echo `find . -type d | grep /`
69 echo 'running'
70 python $CMSSW_BASE/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json >& local.output
71 exit $?
72 #echo
73 #echo 'sending the job directory back'
74 #echo cp -r Loop/* $LS_SUBCWD
75 """
76  return script
77 
def batchScriptPISA(index, remoteDir='')
Definition: heppy_batch.py:46

◆ batchScriptPSI()

def heppy_batch.batchScriptPSI (   index,
  jobDir,
  remoteDir = '' 
)
prepare the SGE version of the batch script, to run on the PSI tier3 batch system

Definition at line 168 of file heppy_batch.py.

References print().

168 def batchScriptPSI( index, jobDir, remoteDir=''):
169  '''prepare the SGE version of the batch script, to run on the PSI tier3 batch system'''
170 
171  cmssw_release = os.environ['CMSSW_BASE']
172  VO_CMS_SW_DIR = "/swshare/cms" # $VO_CMS_SW_DIR doesn't seem to work in the new SL6 t3wn
173 
174  if remoteDir=='':
175  cpCmd="""echo 'sending the job directory back'
176 rm Loop/cmsswPreProcessing.root
177 cp -r Loop/* $SUBMISIONDIR"""
178  elif remoteDir.startswith("/pnfs/psi.ch"):
179  cpCmd="""echo 'sending root files to remote dir'
180 export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:/usr/lib64/dcap/ # Fabio's workaround to fix gfal-tools
181 for f in Loop/mt2*.root
182 do
183  ff=`basename $f | cut -d . -f 1`
184  #d=`echo $f | cut -d / -f 2`
185  gfal-mkdir {srm}
186  echo "gfal-copy file://`pwd`/Loop/$ff.root {srm}/${{ff}}_{idx}.root"
187  gfal-copy file://`pwd`/Loop/$ff.root {srm}/${{ff}}_{idx}.root
188  if [ $? -ne 0 ]; then
189  echo "ERROR: remote copy failed for file $ff"
190  else
191  echo "remote copy succeeded"
192  rm Loop/$ff.root
193  fi
194 done
195 rm Loop/cmsswPreProcessing.root
196 cp -r Loop/* $SUBMISIONDIR""".format(idx=index, srm='srm://t3se01.psi.ch'+remoteDir+jobDir[jobDir.rfind("/"):jobDir.find("_Chunk")])
197  else:
198  print("remote directory not supported yet: ", remoteDir)
199  print('path must start with "/pnfs/psi.ch"')
200  sys.exit(1)
201 
202 
203  script = """#!/bin/bash
204 shopt expand_aliases
205 ##### MONITORING/DEBUG INFORMATION ###############################
206 DATE_START=`date +%s`
207 echo "Job started at " `date`
208 cat <<EOF
209 ################################################################
210 ## QUEUEING SYSTEM SETTINGS:
211 HOME=$HOME
212 USER=$USER
213 JOB_ID=$JOB_ID
214 JOB_NAME=$JOB_NAME
215 HOSTNAME=$HOSTNAME
216 TASK_ID=$TASK_ID
217 QUEUE=$QUEUE
218 
219 EOF
220 echo "######## Environment Variables ##########"
221 env
222 echo "################################################################"
223 TOPWORKDIR=/scratch/`whoami`
224 JOBDIR=sgejob-$JOB_ID
225 WORKDIR=$TOPWORKDIR/$JOBDIR
226 SUBMISIONDIR={jdir}
227 if test -e "$WORKDIR"; then
228  echo "ERROR: WORKDIR ($WORKDIR) already exists! Aborting..." >&2
229  exit 1
230 fi
231 mkdir -p $WORKDIR
232 if test ! -d "$WORKDIR"; then
233  echo "ERROR: Failed to create workdir ($WORKDIR)! Aborting..." >&2
234  exit 1
235 fi
236 
237 #source $VO_CMS_SW_DIR/cmsset_default.sh
238 source {vo}/cmsset_default.sh
239 export SCRAM_ARCH=slc6_amd64_gcc481
240 #cd $CMSSW_BASE/src
241 cd {cmssw}/src
242 shopt -s expand_aliases
243 cmsenv
244 cd $WORKDIR
245 cp -rf $SUBMISIONDIR .
246 ls
247 cd `find . -type d | grep /`
248 echo 'running'
249 python $CMSSW_BASE/src/PhysicsTools/HeppyCore/python/framework/looper.py pycfg.py config.pck --options=options.json
250 #python $CMSSW_BASE/src/CMGTools/RootTools/python/fwlite/looper.py config.pck
251 echo
252 {copy}
253 ###########################################################################
254 DATE_END=`date +%s`
255 RUNTIME=$((DATE_END-DATE_START))
256 echo "################################################################"
257 echo "Job finished at " `date`
258 echo "Wallclock running time: $RUNTIME s"
259 exit 0
260 """.format(jdir=jobDir, vo=VO_CMS_SW_DIR,cmssw=cmssw_release, copy=cpCmd)
261 
262  return script
263 
def batchScriptPSI(index, jobDir, remoteDir='')
Definition: heppy_batch.py:168
void print(TMatrixD &m, const char *label=nullptr, bool mathematicaFormat=false)
Definition: Utilities.cc:47

Variable Documentation

◆ args

heppy_batch.args

Definition at line 346 of file heppy_batch.py.

◆ batchManager

heppy_batch.batchManager

Definition at line 338 of file heppy_batch.py.

◆ cfgFileName

heppy_batch.cfgFileName

Definition at line 357 of file heppy_batch.py.

◆ cfo

heppy_batch.cfo

Definition at line 361 of file heppy_batch.py.

◆ components

heppy_batch.components

Definition at line 365 of file heppy_batch.py.

◆ config

heppy_batch.config

Definition at line 362 of file heppy_batch.py.

◆ handle

heppy_batch.handle

Definition at line 359 of file heppy_batch.py.

◆ heppyOptions_

heppy_batch.heppyOptions_

Definition at line 355 of file heppy_batch.py.

◆ key

heppy_batch.key

Definition at line 351 of file heppy_batch.py.

◆ listOfNames

heppy_batch.listOfNames

Definition at line 367 of file heppy_batch.py.

◆ listOfValues

heppy_batch.listOfValues

Definition at line 366 of file heppy_batch.py.

◆ options

heppy_batch.options

Definition at line 346 of file heppy_batch.py.

◆ usage

heppy_batch.usage

Definition at line 339 of file heppy_batch.py.

◆ val

heppy_batch.val

Definition at line 351 of file heppy_batch.py.

Referenced by edm::TrieNode< T >._sequentialSearch(), SiStripMiscalibrate::Entry.add(), SiStripPI::Entry.add(), FWRecoGeometryESProducer.addCaloGeometry(), ClusterSummary.addClusCharge(), ClusterSummary.addClusChargeByIndex(), ClusterSummary.addClusSize(), ClusterSummary.addClusSizeByIndex(), cms::DDNamespace.addConstant(), cms::DDNamespace.addConstantNS(), pat::helper::AddUserIntFromBool.addData(), pat::helper::AddUserInt.addData(), pat::helper::AddUserFloat.addData(), pat::helper::AddUserPtr.addData(), pat::helper::AddUserCand.addData(), TMTQ.addEntry(), TAPD.addEntry(), TPN.addEntry(), TMom.addEntry(), Entry.addFittedDisplacementToValue(), ClusterSummary.addNClus(), ClusterSummary.addNClusByIndex(), fit::RootMinuit< Function >.addParameter(), ALIUtils.addPii(), OpticalObject.addPii(), ParameterMgr.addRandomFlatParameter(), ParameterMgr.addRandomGaussParameter(), OMTFResult.addResult(), PixelRecoLineRZ.addTIP(), HLTPrescaleExample.analyze(), CTPPSProtonReconstructionEfficiencyEstimatorData.analyze(), cms::SiPixelCondObjForHLTBuilder.analyze(), cms::SiPixelCondObjOfflineBuilder.analyze(), BTVHLTOfflineSource.analyze(), EcalTPGParamBuilder.analyze(), JanAlignmentAlgorithm.analyze(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.analyze(), PackedCandidateTrackValidator.analyze(), TaggingVariablePlotter.analyzeTag(), ALIUtils.approxTo0(), OpticalObject.approxTo0(), BitArray< 9 >.assign(), DTTFBitArray< N >.assign(), cms::cudacompat.atomicCAS(), cms::cudacompat.atomicCAS_block(), cms::DDNamespace.attr(), PrintGeomInfoAction.beginRun(), HistogramManager.book(), HGVHistoProducerAlgo.bookTracksterSTSHistos(), HGCalParametersFromDD.build(), HGCalTBParametersFromDD.build(), DTGeometryBuilderFromDDD.buildGeometry(), DTGeometryParsFromDD.buildGeometry(), XMLConfigReader.buildGP(), L1TDTTFClient.buildHighQualityPlot(), L1TDTTFClient.buildPhiEtaPlotO(), DTCompactMapWriter.buildSteering(), FWPFLegoRecHit.buildTower(), DTReadOutMapping.cacheMap(), emtf.calc_eta_GMT(), emtf.calc_phi_GMT_int(), emtf.calc_pt_GMT(), ticl::TracksterP4FromEnergySum.calcP4(), SiPixelGainCalibrationAnalysis.CalculateAveragePerColumn(), ESIntegrityTask.calculateDIFraction(), SiPixelIsAliveCalibration.calibrationEnd(), hitfit::Base_Constrainer.call_constraint_fcn(), Cell.check(), edm::service::MessageServicePSetValidation.check(), HGCDigitizer.checkPosition(), RBXAndHPDCleaner.clean(), SiPixelCalibConfiguration.columnPatternForEvent(), EcalSelectiveReadout.combineFlags(), reco::EcalClustersGraph.computeWindowVariables(), edmtest::ConcurrentIOVESSource.ConcurrentIOVESSource(), TtSemiLepKinFitProducer< LeptonCollection >.constraint(), TtSemiEvtSolutionMaker.constraint(), TtSemiLepKinFitProducer< LeptonCollection >.constraints(), TtSemiEvtSolutionMaker.constraints(), Measurement.constructFromOA(), CaloTowersCreationAlgo.convert(), HLTPrescaleProvider.convertL1PS(), HLTDQMMuonSelector.convertToEnum(), geant_units::operators.convertUnitsTo(), Cordic.Cordic(), MeasurementSensor2D.correctValueAndSigma(), MeasurementCOPS.correctValueAndSigma(), MeasurementDistancemeter.correctValueAndSigma(), MeasurementDistancemeter3dim.correctValueAndSigma(), MeasurementTiltmeter.correctValueAndSigma(), RPCFw.createGAS(), RPCFw.createIMON(), RPCFw.createSTATUS(), RPCFw.createT(), RPCFw.createVMON(), ConformalMappingFit.curvature(), Selector< pat::Electron >.cut(), vid::CutFlowResult.CutFlowResult(), ConfigurationDBHandler.cvt2String(), dd_exchange_value(), DDValue.DDValue(), DEutils< T >.de_equal(), DEutils< T >.de_equal_loc(), edm.decode(), FWGUIManager.delaySliderChanged(), trklet::KFin.digi(), trackerTFP::DataFormatKF.digi(), ConformalMappingFit.directionPhi(), TMatacq.doFit(), hitfit::Defaults_Textrep.doline(), TrackerMap.drawPalette(), Phase2TrackerDigitizerAlgorithm.drift(), HLTConfigData.dump(), FittedEntriesManager.dumpEntriesSubstraction(), L1DataEmulDigi.empty(), EcalMatacqAnalyzer.endJob(), edmtest::TestFindProduct.endProcessBlock(), edm::Entry.Entry(), jpt::Map.etaBin(), magfieldparam::HarmBasis3DCyl.EvalBphi(), magfieldparam::HarmBasis3DCyl.EvalRZ(), fit::LikelihoodEvaluator< PDF, double >.evaluate(), hitfit::Defaults_Text.exists(), GeometryInterface.extract(), GeometryInterface.extractColumns(), sistrip::SpyUtilities.extractFrameInfo(), CastorDataFrame.fiberIdleOffset(), ZDCDataFrame.fiberIdleOffset(), HFDataFrame.fiberIdleOffset(), HODataFrame.fiberIdleOffset(), HBHEDataFrame.fiberIdleOffset(), HcalCalibDataFrame.fiberIdleOffset(), SiStripTkMaps.fill(), FuncVariable< ObjType, StringFunctor, ValType >.fill(), l1tpf_calo::GridData< PreCluster >.fill(), HcalObjRepresent.Fill(), QcdUeDQM.fill1D(), QcdLowPtDQM.fill1D(), SiStripBadComponentInfo.fillBadComponentMaps(), SiPixelPhase1Analyzer.FillBarrelBinsRemap(), TrackerRemapper.fillBarrelRemap(), Measurement.fillData(), edm::service::RandomNumberGeneratorService.fillDescriptions(), TrackerRemapper.fillEndcapRemap(), SiPixelPhase1Analyzer.FillForwardBinsRemap(), Entry.fillFromInputFileValue(), SmartSelectionMonitor.fillHisto(), Phase2TrackerValidateDigi.fillHistogram(), SiStripSummaryCreator.fillHistos(), LRHelpFunctions.fillLRBackgroundHist(), LRHelpFunctions.fillLRSignalHist(), MuonTrackValidatorBase.fillPlotNoFlow(), DiLepPlotHelp::PlotsVsKinematics.fillPlots(), DiLeptonHelp::PlotsVsKinematics.fillPlots(), TrackingNtuple.fillSeeds(), APDShape.fillShape(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.fillSingleObjectPlots(), TrackingQualityChecker.fillStatusHistogram(), SiStripQualityChecker.fillStatusHistogram(), TrackerRemapper.fillStripRemap(), FWHGTowerProxyBuilderBase.fillTowerForDetId(), FWHFTowerProxyBuilderBase.fillTowerForDetId(), TrackingCertificationInfo.fillTrackingCertificationMEs(), TrackingCertificationInfo.fillTrackingCertificationMEsAtLumi(), reco::EcalClustersGraph.fillVariables(), OMTFResult.finalise(), CellDB.find(), ParabolaFit.fixParC(), GeometryInterface.formatValue(), GlobalCoordsObtainer.from_two_comp(), FWLegoCandidate.FWLegoCandidate(), FWLegoEvePFCandidate.FWLegoEvePFCandidate(), l1tmhtemu.generatemagNormalisationLUT(), edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::GsfTrackCollection, unsigned short > >.get(), hitfit::Defaults_Text.get_bool(), hitfit::Defaults_Textrep.get_val(), edm::Entry.getBool(), ALIUtils.getBool(), DCCDataUnpacker.getCCUValue(), HGCalTBParametersFromDD.getDDDArray(), HGCalParametersFromDD.getDDDArray(), HGCalTBParametersFromDD.getDDDValue(), HGCalParametersFromDD.getDDDValue(), DDG4Builder.getDouble(), edm::Entry.getDouble(), edm::Entry.getESInputTag(), edm::Entry.getEventID(), edm::Entry.getEventRange(), edm::Entry.getFileInPath(), HGCalGeometryMode.getGeometryMode(), HGCalGeometryMode.getGeometryWaferMode(), GlobalOptionMgr.getGlobalOption(), GlobalOptionMgr.getGlobalOptionValue(), SiPixelGainCalibrationReadDQMFile.getHistograms(), edm::Entry.getInputTag(), DDG4Builder.getInt(), MuonGeometryNumbering.getInt(), edm::Entry.getInt32(), edm::Entry.getInt64(), TtHadEvtSolution.getLRJetCombObsVal(), TtSemiEvtSolution.getLRJetCombObsVal(), TtDilepEvtSolution.getLRSignalEvtObsVal(), TtHadEvtSolution.getLRSignalEvtObsVal(), TtSemiEvtSolution.getLRSignalEvtObsVal(), edm::Entry.getLuminosityBlockID(), edm::Entry.getLuminosityBlockRange(), TrackingUtility.getMEValue(), SiStripUtility.getMEValue(), popcon::EcalADCToGeVHandler.getNewObjects(), fit::RootMinuit< Function >.getParameter(), fit::RootMinuit< Function >.getParameterError(), ParameterMgr.getParameterValue(), Model.getParameterValue(), edm::Entry.getPSet(), SSDigitizerAlgorithm.getSignalScale(), ExtractStringFromDD< FilteredView >.getString(), ExtractStringFromDDD< FilteredView >.getString(), DDG4SensitiveConverter.getString(), edm::Entry.getString(), TrajSeedMatcher.getTrajStateFromPoint(), TrajSeedMatcher.getTrajStateFromVtx(), edm::Entry.getUInt32(), edm::Entry.getUInt64(), ParameterMgr.getVal(), MELaserPrim.getVal(), reco::ElectronSeed.getVal(), SiStripCondObjBuilderFromDb.getValue(), cond::Utilities.getValueIfExists(), edm::Entry.getVDouble(), edm::Entry.getVESInputTag(), edm::Entry.getVEventID(), edm::Entry.getVEventRange(), edm::Entry.getVInputTag(), edm::Entry.getVInt32(), edm::Entry.getVInt64(), edm::Entry.getVLuminosityBlockID(), edm::Entry.getVLuminosityBlockRange(), edm::Entry.getVPSet(), edm::Entry.getVString(), edm::Entry.getVUInt32(), edm::Entry.getVUInt64(), GenWeightsTableProducer.globalEndRunProduce(), FWMagField.guessField(), SiStripGainFromAsciiFile::ModuleGain.hard_reset(), hitfit::Objpair.has_constraint(), edm.hash_combine(), SiStripSpyMonitorModule.hasNegativePedSubtr(), ConformalMappingFit.impactParameter(), PDFWeightsHelper.Init(), MuonResidualsFitter.initialize_table(), L2TauNNProducer.initializeGlobalCache(), CTPPSRPAlignmentCorrectionsMethods.iovValueToString(), DEutils< T >.is_empty(), GsfEleEcalDrivenCut.isValidCutVal(), DTBtiChip.keepTrig(), DTBtiChip.keepTrigPatt(), L1GtPsbSetupTrivialProducer.L1GtPsbSetupTrivialProducer(), FWPFMaths.lineLineIntersect(), TrackerMap.load(), UnbinnedLikelihoodFit.logL(), SiStripApvShotCleaner.loop(), CmsShowCommon.loopPalettes(), main(), mtrReset(), ResidualRefitting.muonInfo(), MuonResidualsFitter_logPowerLawTails(), FWFileEntry.nextSelectedEvent(), edm::service::MessageServicePSetValidation.noneExcept(), nanoaod::flatTableHelper::MaybeMantissaReduce< T >.one(), nanoaod::flatTableHelper::MaybeMantissaReduce< float >.one(), PhoMVACut.operator()(), GsfEleMVACut.operator()(), GsfEleValueMapIsoRhoCut.operator()(), StringMap::MatchByString.operator()(), StringMap::MatchByNumber.operator()(), take_address.operator()(), cond::persistency::GetFromRow< std::array< char, n > >.operator()(), BitArray< N >::refToBit.operator=(), DTTFBitArray< N >::refToBit.operator=(), l1ct::ParticleID.operator=(), edm::AssociationMap< edm::OneToOne< std::vector< Trajectory >, reco::GsfTrackCollection, unsigned short > >.operator[](), HcalHTRData.packUnsuppressed(), hitfit::Pair_Table.Pair_Table(), TtSemiLepKinFitProducer< LeptonCollection >.param(), TtSemiEvtSolutionMaker.param(), cms::DDAlgoArguments.parentName(), lumi::NormDML.parseAfterglows(), pos::PixelCalibConfiguration.PixelCalibConfiguration(), DBoxMetadataHelper::DBMetaDataPlotDisplay.plotDiffWithMetadata(), TFParams.polfit(), FWFileEntry.previousSelectedEvent(), helper::ScannerBase.print(), edm::service::RandomNumberGeneratorService.print(), DBoxMetadataHelper::DBMetaDataTableDisplay.printDiffWithMetadata(), DBoxMetadataHelper::DBMetaDataTableDisplay.printMetaDatas(), SiStripDetVOffBuilder.printPar(), printTrackerMap(), MultiVertexFitter.printWeights(), DDLSpecPar.processElement(), JetChargeProducer.produce(), MFProducer.produce(), EcalCATIAGainRatiosESProducer.produce(), MultiClustersFromTrackstersProducer.produce(), MultShiftMETcorrInputProducer.produce(), MultShiftMETcorrDBInputProducer.produce(), SoftKillerProducer.produce(), L1RCTOmdsFedVectorProducer.produce(), L1FPGATrackProducer.produce(), cms::CkfTrackCandidateMakerBase.produceBase(), ecaldqm::MLClient.producePlots(), jpt::Map.ptBin(), cmsutils::bqueue< TrajectoryMeasurement >.push_back(), TShapeAnalysis.putalphaInit(), TShapeAnalysis.putalphaVal(), TShapeAnalysis.putbetaInit(), TShapeAnalysis.putbetaVal(), TShapeAnalysis.putchi2Init(), TShapeAnalysis.putchi2Val(), TShapeAnalysis.putetaInit(), TShapeAnalysis.putflagInit(), TShapeAnalysis.putflagVal(), TShapeAnalysis.putphiInit(), TShapeAnalysis.putwidthInit(), TShapeAnalysis.putwidthVal(), RunInfoRead.readData(), EcalFEtoDigi.readInput(), L1MuGMTHWFileReader.readNextEvent(), popcon::EcalPFRecHitThresholdsHandler.readTXT(), popcon::EcalIntercalibHandler.readTXT(), EcalFloatCondObjectContainerXMLTranslator.readXML(), popcon::EcalPFRecHitThresholdsHandler.readXML(), popcon::EcalIntercalibHandler.readXML(), cms::DDNamespace.realName(), HcalDigisValidation.reco(), DBoxMetadataHelper::RecordMetaDataInfo.RecordMetaDataInfo(), trklet::KFin.redigi(), TagName.regName(), edm::service::IgProfService.replace(), edm::service::JeProfService.replace(), mkfit::ConfigJsonPatcher.replace(), edm::service::IgProfService.replaceU64(), edm::service::JeProfService.replaceU64(), cms::DDAlgoArguments.resolved_scalar_arg(), edm::service::RandomNumberGeneratorService.restoreFromCache(), StoredPileupJetIdentifier.RMS(), cms::rotation_utils.rotHash(), SiPixelCalibConfiguration.rowPatternForEvent(), cms::CSJetProducer.runAlgorithm(), DTOccupancyTestML.runOccupancyTest(), cond::impl.s_to_f(), cond::impl.s_to_i(), cond::impl.s_to_time(), cond::impl.s_to_ul(), cond::impl.s_to_ull(), SiStripApvSimulationParameters.sampleBarrel(), SiStripApvSimulationParameters.sampleEndcap(), deepmet_helper.scale_and_rm_outlier(), FakeBeamMonitor.scrollTH1(), BeamMonitor.scrollTH1(), cond::persistency.search(), LHCInfoImpl.search(), pf2pat::IsolatedPFCandidateSelectorDefinition.select(), Selector< pat::Electron >.set(), pat::strbitset.set(), BitArray< 9 >.set(), DTTFBitArray< N >.set(), l1t::EMTFTrack.set_dxy(), l1t::EMTFTrack.set_eta(), l1t::EMTFHit.set_eta(), l1t::EMTFHit.set_eta_sim(), L1MuDTTFMasks.set_etsoc_chdis_st1(), L1MuDTTFMasks.set_etsoc_chdis_st2(), L1MuDTTFMasks.set_etsoc_chdis_st3(), L1MuDTTFMasks.set_inrec_chdis_csc(), L1MuDTTFMasks.set_inrec_chdis_st1(), L1MuDTTFMasks.set_inrec_chdis_st2(), L1MuDTTFMasks.set_inrec_chdis_st3(), L1MuDTTFMasks.set_inrec_chdis_st4(), L1MuDTTFParameters.set_inrec_qual_st1(), L1MuDTTFParameters.set_inrec_qual_st2(), L1MuDTTFParameters.set_inrec_qual_st3(), L1MuDTTFParameters.set_inrec_qual_st4(), l1t::EMTFTrack.set_phi_glob(), l1t::EMTFHit.set_phi_glob(), l1t::EMTFTrack.set_phi_loc(), l1t::EMTFHit.set_phi_loc(), l1t::EMTFHit.set_phi_sim(), l1t::EMTFTrack.set_pt(), l1t::EMTFTrack.set_pt_dxy(), l1t::EMTFTrack.set_pt_XML(), l1t::EMTFHit.set_rho_sim(), L1MuDTTFParameters.set_soc_csc_etacanc(), L1MuDTTFParameters.set_soc_nbx_del(), L1MuDTTFParameters.set_soc_openlut_extr(), L1MuDTTFParameters.set_soc_qcut_st1(), L1MuDTTFParameters.set_soc_qcut_st2(), L1MuDTTFParameters.set_soc_qcut_st4(), L1MuDTTFParameters.set_soc_qual_csc(), L1MuDTTFParameters.set_soc_run_21(), L1MuDTTFParameters.set_soc_stdis_n(), L1MuDTTFParameters.set_soc_stdis_wl(), L1MuDTTFParameters.set_soc_stdis_wr(), L1MuDTTFParameters.set_soc_stdis_zl(), L1MuDTTFParameters.set_soc_stdis_zr(), l1t::EMTFTrack.set_theta(), l1t::EMTFHit.set_theta(), l1t::EMTFHit.set_theta_sim(), l1t::EMTFHit.set_time(), cms.set_to_default(), l1t::EMTFHit.set_z_sim(), edm::ProcessBlockHelperBase.setAddedProcesses(), GlobalAlgBlk.setAlgoDecisionFinal(), GlobalAlgBlk.setAlgoDecisionInitial(), GlobalAlgBlk.setAlgoDecisionInterm(), SimBeamSpotObjects.setAlpha(), ALIRmDataFromFile.setAngle(), ALIRmDataFromFile.setAngleX(), ALIRmDataFromFile.setAngleY(), ALIRmDataFromFile.setAngleZ(), DeviationsFromFileSensor2D.setApply(), TotemVFATStatus.setBCProgressError(), BeamSpotObjects.setBeamWidthX(), BeamSpotObjects.setBeamWidthXError(), BeamSpotObjects.setBeamWidthY(), BeamSpotObjects.setBeamWidthYError(), SimBeamSpotObjects.setBetaStar(), BeamSpotObjects.setBetaStar(), Conv4HitsReco2.SetBField(), SLBin.setBin(), MEGeom.setBinGlobalHist(), PFPileUpAlgo.setCheckClosestZVertex(), edm::RunProcessingStatus.setCleaningUpAfterException(), l1t::CaloCluster.setClusterFlag(), BSFitter.SetConvergence(), BeamSpotObjects.setCovariance(), edm::service::ResourceInformationService.setCpuAverageSpeed(), edm::service::ResourceInformationService.setCPUModels(), edm::service::ResourceInformationService.setCpuModelsFormatted(), EcalHitMaker.setCrackPadSurvivalProbability(), TotemVFATStatus.setCRCError(), edm::service::ResourceInformationService.setCudaDriverVersion(), edm::service::ResourceInformationService.setCudaRuntimeVersion(), DataModeFRDStriped.setDataBlockInitialized(), DataModeScoutingRun2Multi.setDataBlockInitialized(), ALIUtils.setDebugVerbosity(), FWGUIManager.setDelayBetweenEvents(), reco::PFCandidateElectronExtra.setDeltaEta(), reco::PFCandidateEGammaExtra.setDeltaEta(), BeamSpotObjects.setdxdz(), BeamSpotObjects.setdydz(), PFPileUpAlgo.setDzCutForChargedFromPUVtxs(), reco::PFCandidateElectronExtra.setEarlyBrem(), reco::PFCandidateEGammaExtra.setEarlyBrem(), reco::PFBlockElementSuperCluster.setEcalIso(), pat::Electron.setEcalRegressionEnergy(), pat::Electron.setEcalRegressionScale(), pat::Electron.setEcalRegressionSmear(), pat::Electron.setEcalScale(), pat::Electron.setEcalSmear(), pat::Electron.setEcalTrackRegressionEnergy(), pat::Electron.setEcalTrackRegressionScale(), pat::Electron.setEcalTrackRegressionSmear(), TotemVFATStatus.setECProgressError(), SimBeamSpotObjects.setEmittance(), BeamSpotObjects.setEmittanceX(), BeamSpotObjects.setEmittanceY(), HGCalSiNoiseMap< HGCSiliconDetId >.setENCCommonNoiseSubScale(), reco::HFValueStruct.setEnCor(), edm::RunProcessingStatus.setEndingEventSetupSucceeded(), edm::LuminosityBlockProcessingStatus.setEventProcessingState(), GlobalExtBlk.setExternalDecision(), OpticalObject.setExtraEntryValue(), ElectronLimiter.SetFieldCheckFlag(), ALIUtils.setFirstTime(), TtEvent.setFitChi2(), TtEvent.setFitProb(), Conv4HitsReco2.SetFixedNumberOfIterations(), HGCalRadiationMap.setFluenceScaleFactor(), TotemVFATStatus.setFootprintError(), reco::PFBlockElementSuperCluster.setFromGsfElectron(), reco::PFBlockElementSuperCluster.setFromPFSuperCluster(), reco::PFBlockElementSuperCluster.setFromPhoton(), TtEvent.setGenMatchSumDR(), TtEvent.setGenMatchSumPt(), GlobalOptionMgr.setGlobalOption(), L1TDTTFClient.setGMTsummary(), edm::service::ResourceInformationService.setGPUModels(), L1GtTriggerMenuXmlParser.setGtAlgorithmImplementation(), l1t::TriggerMenuParser.setGtAlgorithmImplementation(), L1GtTriggerMenuXmlParser.setGtTriggerMenuAuthor(), l1t::TriggerMenuParser.setGtTriggerMenuAuthor(), L1GtTriggerMenuXmlParser.setGtTriggerMenuDate(), l1t::TriggerMenuParser.setGtTriggerMenuDate(), L1GtTriggerMenuXmlParser.setGtTriggerMenuDescription(), l1t::TriggerMenuParser.setGtTriggerMenuDescription(), L1GtTriggerMenuXmlParser.setGtTriggerMenuInterfaceAuthor(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceAuthor(), L1GtTriggerMenuXmlParser.setGtTriggerMenuInterfaceDate(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceDate(), L1GtTriggerMenuXmlParser.setGtTriggerMenuInterfaceDescription(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceDescription(), reco::PFCandidateElectronExtra.setHadEnergy(), reco::PFCandidateEGammaExtra.setHadEnergy(), reco::PFBlockElementSuperCluster.setHcalIso(), EcalSelectiveReadout.setHigher(), TtEvent.setHitFitChi2(), TtEvent.setHitFitMT(), TtEvent.setHitFitProb(), TtEvent.setHitFitSigMT(), reco::PFBlockElementSuperCluster.setHoE(), TotemVFATStatus.setIDMismatch(), BSFitter.SetInputBeamWidth(), L1MuGMTInputEvent.setIsoBit(), Entry.setLastAdditionToValueDisplacementByFitting(), BeamSpotOnlineObjects.setLastAnalyzedFill(), BeamSpotOnlineObjects.setLastAnalyzedLumi(), BeamSpotOnlineObjects.setLastAnalyzedRun(), reco::PFCandidateElectronExtra.setLateBrem(), reco::PFCandidateEGammaExtra.setLateBrem(), EcalSelectiveReadout.setLower(), edm::LuminosityBlockProcessingStatus.setLumiPrincipal(), ALIUtils.setMaximumDeviationDerivative(), Conv4HitsReco2.SetMaxNumberOfIterations(), PhotonEnergyCalibrator.setMinEt(), ElectronEnergyCalibrator.setMinEt(), TTUTrackingAlg.setMinTrkLength(), L1MuGMTInputEvent.setMipBit(), TotemVFATStatus.setMissing(), SimWatcher.setMT(), reco::PFCandidateElectronExtra.setMVA(), reco::PFCandidateEGammaExtra.setMVA(), TtEvent.setMvaDiscriminators(), reco::ElectronSeed.setNrLayersAlongTraj(), CaloSD.setNumberCheckedHits(), PFPileUpAlgo.setNumOfPUVtxsForCharged(), edm::service::ResourceInformationService.setNvidiaDriverVersion(), fit::RootMinuit< Function >.setParameter(), CaloSD.setParameterized(), fit::RootMinuit< Function >.setParameters(), SiPixelCalibDigiProducer.setPattern(), SimBeamSpotObjects.setPhi(), Conv4HitsReco2.SetPhiECut(), CmsShowMainBase.setPlayDelay(), CmsShowMainFrame.setPlayDelayGUI(), edm::StoredProcessBlockHelper.setProcessBlockCacheIndices(), edm::ProcessBlockHelperBase.setProcessesWithProcessBlockProducts(), edm::StoredProcessBlockHelper.setProcessesWithProcessBlockProducts(), HiEvtPlaneFlatten.setPt2DB(), HiEvtPlaneFlatten.setPtDB(), reco::HFValueStruct.setPUIntercept(), EcalHitMaker.setPulledPadSurvivalProbability(), reco::HFValueStruct.setPUSlope(), Conv4HitsReco2.SetRadiusECut(), ElectronLimiter.SetRangeCheckFlag(), Conv4HitsReco2.SetRECut(), ALIUtils.setReportVerbosity(), l1t::GlobalBoard.setResetPSCountersEachLumiSec(), L1MuKBMTrack.setResidual(), SteppingHelixPropagator.setReturnTangentPlane(), edm::RunProcessingStatus.setRunPrincipal(), StEvtSolution.setScanValues(), l1t::GlobalBoard.setSemiRandomInitialPSCounters(), SteppingHelixPropagator.setSendLogWarning(), TritonData< IO >.setShape(), Measurement.setSigma(), reco::PFCandidateElectronExtra.setSigmaEtaEta(), reco::PFCandidateEGammaExtra.setSigmaEtaEta(), SimBeamSpotObjects.setSigmaZ(), BeamSpotObjects.setSigmaZ(), TtFullLeptonicEvent.setSolWeight(), EcalTPGCrystalStatusCode.setStatusCode(), edm::RunProcessingStatus.setStopBeforeProcessingRun(), CrystalPad.setSurvivalProbability(), TimingSD.setTimeFactor(), SimBeamSpotObjects.setTimeOffset(), reco::PFBlockElementSuperCluster.setTrackIso(), DTConfigTSPhi.setTsmStatus(), DTConfigTSPhi.setUsedTraco(), SteppingHelixPropagator.setUseInTeslaFromMagField(), SteppingHelixPropagator.setUseIsYokeFlag(), SteppingHelixPropagator.setUseMagVolumes(), CaloSD.setUseMap(), SteppingHelixPropagator.setUseMatVolumes(), SteppingHelixPropagator.setUseTuningForL2Speed(), MELaserPrim.setVal(), FWIntValueListenerBase.setValue(), EcalTPGTowerStatus.setValue(), EcalTPGStripStatus.setValue(), EcalTPGSpike.setValue(), CalibCoeff.setValue(), L1MonitorDigi.setValue(), Entry.setValue(), edm::TrieNode< T >.setValue(), L1GctInternHFData.setValue(), edm::AssociationVector< KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper >.setValue(), L1GctInternEtSum.setValue(), Measurement.setValue(), BaseMVAValueMapProducer< pat::Muon >.setValue(), EntryData.setValueDisplacement(), FWIntValueListener.setValueImp(), reco::PFCandidateElectronExtra.setVariable(), reco::PFCandidateEGammaExtra.setVariable(), SteppingHelixPropagator.setVBFPointer(), CMSSteppingVerbose.setVerbose(), TtFullLeptonicEvent.setWrongCharge(), SimBeamSpotObjects.setX(), Crystal.setX0Back(), HiEvtPlaneFlatten.setXDB(), HiEvtPlaneFlatten.setXoffDB(), SimBeamSpotObjects.setY(), HiEvtPlaneFlatten.setYDB(), HiEvtPlaneFlatten.setYoffDB(), SimBeamSpotObjects.setZ(), FWPFMaths.sgn(), L1GTTInputProducer.sgn(), HFCherenkov.smearNPE(), JanAlignmentAlgorithm.solve(), OMTFSorter< GoldenPatternType >.sortRefHitResults(), SiStripDetVOffBuilder.statusChange(), SSDigitizerAlgorithm.storeSignalShape(), fit::RootMinuitCommands< Function >.string2double(), ElectronEnergyCalibrator.stringToDouble(), HcalDcsValues.subDetOk(), PixelRecoLineRZ.subTIP(), MultipleScatteringX0Data.sumX0atEta(), pat::Jet.tagInfoByType(), dqm::impl::MonitorElement.tagString(), pat::Flags.test(), test_standard(), edmtest::TestESConcurrentSource.TestESConcurrentSource(), edmtest::TestESSource.TestESSource(), GlobalCoordsObtainer.to_two_comp(), DDMapper< G4LogicalVolume *, DDLogicalPart >.toDouble(), ConvertedPhotonProducer.toFConverterP(), ConversionProducer.toFConverterP(), ConvertedPhotonProducer.toFConverterV(), ConversionProducer.toFConverterV(), DDMapper< G4LogicalVolume *, DDLogicalPart >.toString(), EcalDumpRaw.toString(), EgammaL1TkIsolation::TrkCuts.TrkCuts(), EleTkIsolFromCands::TrkCuts.TrkCuts(), UnbinnedLL(), l1t::stage2::GlobalExtBlkUnpacker.unpack(), l1t::stage2::GlobalAlgBlkUnpacker.unpack(), DCCEEEventBlock.unpack(), DCCEBEventBlock.unpack(), logintpack.unpack16log(), logintpack.unpack16logClosed(), logintpack.unpack8log(), logintpack.unpack8logClosed(), KinematicConstrainedVertexUpdator.update(), KinematicConstrainedVertexUpdatorT< nTrk, nConstraint >.update(), jsoncollector::HistoJ< unsigned int >.update(), PixelInactiveAreaFinder.updatePixelDets(), FWLegoEvePFCandidate.updateScale(), FWBoxRecHit.updateScale(), FWLegoCandidate.updateScale(), FWPFLegoRecHit.updateScale(), ALIUtils.val0(), edm::Entry.validate(), PhoMVACut.value(), GsfEleMVACut.value(), edm::eventsetup::impl::AcquireCacheType< TAcquireReturn >.value(), reco::parser::ExpressionVar.value(), edm::eventsetup::impl::AcquireCacheType< std::optional< U > >.value(), edm::eventsetup::impl::AcquireCacheType< std::unique_ptr< U > >.value(), reco::parser::ExpressionLazyVar.value(), edm::eventsetup::impl::AcquireCacheType< std::shared_ptr< U > >.value(), NanoAODDQM::Plot1D.vfill(), L1GtVmeWriterCore.vmeAddrValueBlock(), magneticfield::volumeHandle.volumeHandle(), CastorCORData.wasMarkAndPassZS(), HcalHTRData.wasMarkAndPassZS(), HcalHTRData.wasMarkAndPassZSTP(), AlcaBeamSpotManager.weight(), BeamMonitorBx.weight(), and HcalPulseShapes.Y11206().

◆ waitingTime

heppy_batch.waitingTime

Definition at line 370 of file heppy_batch.py.