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

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

Definition at line 76 of file heppy_batch.py.

References python.rootplot.root2matplotlib.replace(), and digitizers_cfi.strip.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

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

Definition at line 262 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

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

Definition at line 282 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

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

Definition at line 15 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

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

Definition at line 44 of file heppy_batch.py.

Referenced by heppy_batch.MyBatchManager.PrepareJobUser().

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

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

Variable Documentation

heppy_batch.args

Definition at line 344 of file heppy_batch.py.

heppy_batch.batchManager

Definition at line 336 of file heppy_batch.py.

heppy_batch.cfgFileName

Definition at line 355 of file heppy_batch.py.

heppy_batch.cfo

Definition at line 359 of file heppy_batch.py.

heppy_batch.components

Definition at line 363 of file heppy_batch.py.

heppy_batch.config

Definition at line 360 of file heppy_batch.py.

heppy_batch.handle

Definition at line 357 of file heppy_batch.py.

heppy_batch.heppyOptions_

Definition at line 353 of file heppy_batch.py.

heppy_batch.key

Definition at line 349 of file heppy_batch.py.

heppy_batch.listOfNames

Definition at line 365 of file heppy_batch.py.

heppy_batch.listOfValues

Definition at line 364 of file heppy_batch.py.

heppy_batch.options

Definition at line 344 of file heppy_batch.py.

heppy_batch.usage

Definition at line 337 of file heppy_batch.py.

heppy_batch.val

Definition at line 349 of file heppy_batch.py.

Referenced by ClusterSummary.addClusCharge(), ClusterSummary.addClusChargeByIndex(), ClusterSummary.addClusSize(), ClusterSummary.addClusSizeByIndex(), 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(), MCEfficiencyAnalyzer.analyze(), EcalTPGParamBuilder.analyze(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.analyze(), PackedCandidateTrackValidator.analyze(), TaggingVariablePlotter.analyzeTag(), ALIUtils.approxTo0(), OpticalObject.approxTo0(), HistogramManager.book(), HGCalParametersFromDD.build(), FastTimeParametersFromDD.build(), DTGeometryBuilderFromDDD.buildGeometry(), DTGeometryParsFromDD.buildGeometry(), XMLConfigReader.buildGP(), L1TDTTFClient.buildHighQualityPlot(), L1TDTTFClient.buildPhiEtaPlotO(), DTCompactMapWriter.buildSteering(), FWPFLegoRecHit.buildTower(), DTReadOutMapping.cacheMap(), SiPixelGainCalibrationAnalysis.CalculateAveragePerColumn(), ESIntegrityTask.calculateDIFraction(), SiPixelIsAliveCalibration.calibrationEnd(), hitfit::Base_Constrainer.call_constraint_fcn(), l1t::CaloCluster.CaloCluster(), GsfEleEcalDrivenCut.candidateType(), edm::service::MessageServicePSetValidation.check(), SiStripBadComponentInfo.checkBadComponents(), WenuPlots.CheckCuts(), ZeePlots.CheckCuts1(), ZeePlots.CheckCuts2(), RBXAndHPDCleaner.clean(), SiPixelCalibConfiguration.columnPatternForEvent(), Measurement.constructFromOA(), CaloTowersCreationAlgo.convert(), GlobalAlgBlk.copyIntermToFinal(), MeasurementSensor2D.correctValueAndSigma(), MeasurementCOPS.correctValueAndSigma(), MeasurementDistancemeter3dim.correctValueAndSigma(), MeasurementDistancemeter.correctValueAndSigma(), MeasurementTiltmeter.correctValueAndSigma(), RPCFw.createGAS(), RPCFw.createIMON(), HcalDbASCIIIO.createObject< HcalElectronicsMap >(), RPCFw.createSTATUS(), RPCFw.createT(), RPCFw.createVMON(), ConformalMappingFit.curvature(), vid::CutFlowResult.CutFlowResult(), dd_exchange_value(), DDValue.DDValue(), DEutils< T >.de_equal(), DEutils< T >.de_equal_loc(), edm.decode(), ConformalMappingFit.directionPhi(), TMatacq.doFit(), hitfit::Defaults_Textrep.doline(), TrackerMap.drawPalette(), FittedEntriesManager.dumpEntriesSubstraction(), Particle.E(), L1DataEmulDigi.empty(), EcalMatacqAnalyzer.endJob(), magfieldparam::HarmBasis3DCyl.EvalBphi(), magfieldparam::HarmBasis3DCyl.EvalRZ(), hitfit::Defaults_Text.exists(), reco::ExprLiteral< Value, ActON >.ExprLiteral(), GeometryInterface.extract(), DQMStore.extract(), GeometryInterface.extractColumns(), sistrip::SpyUtilities.extractFrameInfo(), CastorDataFrame.fiberIdleOffset(), HBHEDataFrame.fiberIdleOffset(), HFDataFrame.fiberIdleOffset(), ZDCDataFrame.fiberIdleOffset(), HODataFrame.fiberIdleOffset(), HcalCalibDataFrame.fiberIdleOffset(), SiStripBadComponentInfo.fillBadComponentMaps(), Measurement.fillData(), edm::service::RandomNumberGeneratorService.fillDescriptions(), Entry.fillFromInputFileValue(), SiStripSummaryCreator.fillHistos(), FSQ::HandlerTemplate< TInputCandidateType, TOutputCandidateType, filter >.fillSingleObjectPlots(), TrackingCertificationInfo.fillTrackingCertificationMEs(), TrackingCertificationInfo.fillTrackingCertificationMEsAtLumi(), OMTFResult.finalise(), ParabolaFit.fixParC(), FWLegoCandidate.FWLegoCandidate(), FWLegoEvePFCandidate.FWLegoEvePFCandidate(), CmsShowCommon.gamma(), edm::AssociationMap< edm::OneToMany< reco::BasicJetCollection, reco::TrackCollection > >.get(), hitfit::Defaults_Text.get_bool(), hitfit::Defaults_Textrep.get_val(), edm::Entry.getBool(), ALIUtils.getBool(), DCCDataUnpacker.getCCUValue(), DDG4Builder.getDouble(), edm::Entry.getDouble(), edm::Entry.getESInputTag(), edm::Entry.getEventID(), edm::Entry.getEventRange(), edm::Entry.getFileInPath(), GlobalOptionMgr.getGlobalOption(), edm::Entry.getInputTag(), MuonDDDNumbering.getInt(), DDG4Builder.getInt(), edm::Entry.getInt32(), edm::Entry.getInt64(), TtHadEvtSolution.getLRJetCombObsVal(), TtSemiEvtSolution.getLRJetCombObsVal(), TtDilepEvtSolution.getLRSignalEvtObsVal(), TtHadEvtSolution.getLRSignalEvtObsVal(), TtSemiEvtSolution.getLRSignalEvtObsVal(), edm::Entry.getLuminosityBlockID(), edm::Entry.getLuminosityBlockRange(), EcalTPGStripStatus.getMap(), EcalTPGTowerStatus.getMap(), EcalTPGSpike.getMap(), popcon::EcalADCToGeVHandler.getNewObjects(), fit::RootMinuit< Function >.getParameter(), fit::RootMinuit< Function >.getParameterError(), edm::Entry.getPSet(), OMTFResult.getRefPhiRHits(), ExtractStringFromDDD.getString(), DDG4SensitiveConverter.getString(), edm::Entry.getString(), TrajSeedMatcher.getTrajStateFromPoint(), TrajSeedMatcher.getTrajStateFromVtx(), edm::Entry.getUInt32(), edm::Entry.getUInt64(), ParameterMgr.getVal(), MELaserPrim.getVal(), 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(), GlobalOptionMgr.GlobalOptions(), hitfit::Objpair.has_constraint(), SiStripSpyMonitorModule.hasNegativePedSubtr(), reco::HFValueStruct.HFValueStruct(), HGCFEElectronics< DFr >.HGCFEElectronics(), ConformalMappingFit.impactParameter(), PDFWeightsHelper.Init(), MuonResidualsFitter.initialize_table(), DEutils< T >.is_empty(), edm::service::IgProfService.isProcessWideService(), DTBtiChip.keepTrig(), DTBtiChip.keepTrigPatt(), reco::PFCandidateElectronExtra.kfTrackRef(), L1GtPsbSetupTrivialProducer.L1GtPsbSetupTrivialProducer(), FWPFMaths.lineLineIntersect(), TrackerMap.load(), UnbinnedLikelihoodFit.logL(), SiStripApvShotCleaner.loop(), CmsShowMainBase.loop(), CmsShowCommon.loopPalettes(), main(), Model.MatricesFName(), OpticalObject.meas(), Particle.Mom(), mtrReset(), ResidualRefitting.muonInfo(), MuonResidualsFitter_logPowerLawTails(), CocoaAnalyzer.myFetchDbl(), CocoaAnalyzer.myFetchString(), FWFileEntry.nextSelectedEvent(), edm::service::MessageServicePSetValidation.noneExcept(), nanoaod::flatTableHelper::MaybeMantissaReduce< T >.one(), GsfEleMVACut.operator()(), PhoMVACut.operator()(), GsfEleValueMapIsoRhoCut.operator()(), GsfEleMVAExpoScalingCut.operator()(), SaturationFcn.operator()(), take_address.operator()(), cond::persistency::GetFromRow< std::array< char, n > >.operator()(), edm::AssociationMap< edm::OneToMany< reco::BasicJetCollection, reco::TrackCollection > >.operator[](), HcalHTRData.packUnsuppressed(), hitfit::Pair_Table.Pair_Table(), ParameterMgr.ParameterMgr(), lumi::NormDML.parseAfterglows(), pos::PixelCalibConfiguration.PixelCalibConfiguration(), TFParams.polfit(), Particle.Pos(), FWFileEntry.previousSelectedEvent(), helper::ScannerBase.print(), edm::service::RandomNumberGeneratorService.print(), SiStripDetVOffBuilder.printPar(), printTrackerMap(), MultiVertexFitter.printWeights(), DDLSpecPar.processElement(), JetChargeProducer.produce(), MFProducer.produce(), PuppiProducer.produce(), MultShiftMETcorrInputProducer.produce(), MultShiftMETcorrDBInputProducer.produce(), SoftKillerProducer.produce(), L1RCTOmdsFedVectorProducer.produce(), cms::CkfTrackCandidateMakerBase.produceBase(), 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(), Particle.Px(), Particle.Py(), edm.pythonToCppException(), Particle.Pz(), RunInfoRead.readData(), EcalFEtoDigi.readInput(), L1MuGMTHWFileReader.readNextEvent(), EcalFloatCondObjectContainerXMLTranslator.readXML(), popcon::EcalIntercalibHandler.readXML(), HcalDigisValidation.reco(), DDName.registerName(), TagName.regName(), edm::service::RandomNumberGeneratorService.restoreFromCache(), muonisolation::MuIsoBaseIsolator::Result.Result(), SiPixelCalibConfiguration.rowPatternForEvent(), DTOccupancyTestML.runOccupancyTest(), BeamMonitor.scrollTH1(), cond::persistency.search(), pf2pat::IsolatedPFCandidateSelectorDefinition.select(), Selector< edm::Ptr< reco::Photon > >.set(), pat::strbitset.set(), DTTFBitArray< N >.set(), BitArray< 9 >.set(), 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(), 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_XML(), L1MuDTTFParameters.set_soc_csc_etacanc(), L1MuDTTFParameters.set_soc_nbx_del(), L1MuDTTFParameters.set_soc_openlut_extr(), L1MuDTTFParameters.set_soc_run_21(), l1t::EMTFTrack.set_theta(), l1t::EMTFHit.set_theta(), l1t::EMTFHit.set_theta_sim(), GlobalAlgBlk.setAlgoDecisionFinal(), GlobalAlgBlk.setAlgoDecisionInitial(), GlobalAlgBlk.setAlgoDecisionInterm(), ALIRmDataFromFile.setAngleX(), ALIRmDataFromFile.setAngleY(), ALIRmDataFromFile.setAngleZ(), DeviationsFromFileSensor2D.setApply(), TotemVFATStatus.setBCProgressError(), BeamSpotObjects.SetBeamWidthX(), BeamSpotObjects.SetBeamWidthXError(), BeamSpotObjects.SetBeamWidthY(), BeamSpotObjects.SetBeamWidthYError(), BeamSpotObjects.SetBetaStar(), Conv4HitsReco2.SetBField(), globcontrol.setce(), PFPileUpAlgo.setCheckClosestZVertex(), BSFitter.SetConvergence(), BeamSpotObjects.SetCovariance(), EcalHitMaker.setCrackPadSurvivalProbability(), TotemVFATStatus.setCRCError(), ALIUtils.setDebugVerbosity(), reco::PFCandidateElectronExtra.setDeltaEta(), reco::PFCandidateEGammaExtra.setDeltaEta(), BeamSpotObjects.Setdxdz(), BeamSpotObjects.Setdydz(), 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(), BeamSpotObjects.SetEmittanceX(), BeamSpotObjects.SetEmittanceY(), reco::HFValueStruct.setEnCor(), GlobalExtBlk.setExternalDecision(), OpticalObject.setExtraEntryValue(), ElectronLimiter.SetFieldCheckFlag(), ALIUtils.setFirstTime(), TtEvent.setFitChi2(), TtEvent.setFitProb(), Conv4HitsReco2.SetFixedNumberOfIterations(), TotemVFATStatus.setFootprintError(), reco::PFBlockElementSuperCluster.setFromGsfElectron(), reco::PFBlockElementSuperCluster.setFromPFSuperCluster(), reco::PFBlockElementSuperCluster.setFromPhoton(), TtEvent.setGenMatchSumDR(), TtEvent.setGenMatchSumPt(), GlobalOptionMgr.setGlobalOption(), L1TDTTFClient.setGMTsummary(), l1t::TriggerMenuParser.setGtAlgorithmImplementation(), L1GtTriggerMenuXmlParser.setGtAlgorithmImplementation(), l1t::TriggerMenuParser.setGtTriggerMenuAuthor(), L1GtTriggerMenuXmlParser.setGtTriggerMenuAuthor(), l1t::TriggerMenuParser.setGtTriggerMenuDate(), L1GtTriggerMenuXmlParser.setGtTriggerMenuDate(), l1t::TriggerMenuParser.setGtTriggerMenuDescription(), L1GtTriggerMenuXmlParser.setGtTriggerMenuDescription(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceAuthor(), L1GtTriggerMenuXmlParser.setGtTriggerMenuInterfaceAuthor(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceDate(), L1GtTriggerMenuXmlParser.setGtTriggerMenuInterfaceDate(), l1t::TriggerMenuParser.setGtTriggerMenuInterfaceDescription(), L1GtTriggerMenuXmlParser.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(), Conv4HitsReco.SetIterationStopRelThreshold(), Entry.setLastAdditionToValueDisplacementByFitting(), Particle.SetLastMotherDecayCoor(), Particle.SetLastMotherDecayMom(), reco::PFCandidateElectronExtra.setLateBrem(), reco::PFCandidateEGammaExtra.setLateBrem(), EcalSelectiveReadout.setLower(), ALIUtils.setMaximumDeviationDerivative(), Conv4HitsReco2.SetMaxNumberOfIterations(), Conv4HitsReco.SetMaxNumberOfIterations(), Conv4HitsReco.SetMaxVtxDistance(), PhotonEnergyCalibrator.setMinEt(), ElectronEnergyCalibrator.setMinEt(), TTUTrackingAlg.setMinTrkLength(), L1MuGMTInputEvent.setMipBit(), TotemVFATStatus.setMissing(), TtEvent.setMvaDiscriminators(), reco::ElectronSeed.setNrLayersAlongTraj(), Entry.setOptOCurrent(), fit::RootMinuit< Function >.setParameter(), fit::RootMinuit< Function >.setParameters(), SiPixelCalibDigiProducer.setPattern(), Conv4HitsReco2.SetPhiECut(), CmsShowMainBase.setPlayDelay(), HiEvtPlaneFlatten.setPt2DB(), HiEvtPlaneFlatten.setPtDB(), Conv4HitsReco.SetPtLegMaxCut(), Conv4HitsReco.SetPtLegMinCut(), Conv4HitsReco.SetPtPhotMaxCut(), reco::HFValueStruct.setPUIntercept(), EcalHitMaker.setPulledPadSurvivalProbability(), reco::HFValueStruct.setPUSlope(), Conv4HitsReco2.SetRadiusECut(), ElectronLimiter.SetRangeCheckFlag(), Conv4HitsReco2.SetRECut(), ALIUtils.setReportVerbosity(), L1MuKBMTrack.setResidual(), SteppingHelixPropagator.setReturnTangentPlane(), SteppingHelixPropagator.setSendLogWarning(), Measurement.setSigma(), reco::PFCandidateElectronExtra.setSigmaEtaEta(), reco::PFCandidateEGammaExtra.setSigmaEtaEta(), BeamSpotObjects.SetSigmaZ(), TtFullLeptonicEvent.setSolWeight(), EcalTPGCrystalStatusCode.setStatusCode(), CrystalPad.setSurvivalProbability(), reco::PFBlockElementSuperCluster.setTrackIso(), L1GctInternHFData.setType(), L1GctInternEtSum.setType(), SteppingHelixPropagator.setUseInTeslaFromMagField(), SteppingHelixPropagator.setUseIsYokeFlag(), SteppingHelixPropagator.setUseMagVolumes(), SteppingHelixPropagator.setUseMatVolumes(), PixelHitMatcher.setUseRecoVertex(), SteppingHelixPropagator.setUseTuningForL2Speed(), MELaserPrim.setVal(), EcalTPGStripStatus.setValue(), EcalTPGTowerStatus.setValue(), EcalTPGSpike.setValue(), CalibCoeff.setValue(), L1MonitorDigi.setValue(), BaseMVAValueMapProducer< pat::Jet >.setValue(), Entry.setValue(), edm::TrieNode< T >.setValue(), edm::AssociationVector< KeyRefProd, CVal, KeyRef, SizeType, KeyReferenceHelper >.setValue(), Measurement.setValue(), EntryData.setValueDisplacement(), reco::PFCandidateElectronExtra.setVariable(), reco::PFCandidateEGammaExtra.setVariable(), SteppingHelixPropagator.setVBFPointer(), TtFullLeptonicEvent.setWrongCharge(), Crystal.setX0Back(), HiEvtPlaneFlatten.setXDB(), HiEvtPlaneFlatten.setXoffDB(), HiEvtPlaneFlatten.setYDB(), HiEvtPlaneFlatten.setYoffDB(), Signal.Signal(), reco::PFCandidateEGammaExtra.singleLegConversionRef(), HFCherenkov.smearNPE(), OMTFSorter.sortRefHitResults(), SiStripDetVOffBuilder.statusChange(), fit::RootMinuitCommands< Function >.string2double(), ElectronEnergyCalibrator.stringToDouble(), HcalDcsValues.subDetOk(), PixelRecoLineRZ.subTIP(), MultipleScatteringX0Data.sumX0atEta(), Particle.T(), pat::Jet.tagInfoByType(), MonitorElement.tagString(), EcalDumpRaw.toString(), EleTkIsolFromCands::TrkCuts.TrkCuts(), UECalibration.UECalibration(), 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(), PixelInactiveAreaFinder.updatePixelDets(), FWLegoEvePFCandidate.updateScale(), FWLegoCandidate.updateScale(), FWBoxRecHit.updateScale(), FWPFLegoRecHit.updateScale(), ALIUtils.val0(), edm::Entry.validate(), PhoMVACut.value(), GsfEleMVACut.value(), GsfEleMVAExpoScalingCut.value(), reco::parser::ExpressionVar.value(), reco::parser::ExpressionLazyVar.value(), edm::AssociationVector< PFTauRefProd, std::vector< int > >.value(), CastorCORData.wasMarkAndPassZS(), HcalHTRData.wasMarkAndPassZS(), HcalHTRData.wasMarkAndPassZSTP(), Particle.X(), Particle.Y(), HcalPulseShapes.Y11206(), Particle.Z(), ALIRmDataFromFile.~ALIRmDataFromFile(), FWCaloDataHistProxyBuilder.~FWCaloDataHistProxyBuilder(), L1MuDTTFMasks.~L1MuDTTFMasks(), and L1MuDTTFParameters.~L1MuDTTFParameters().

heppy_batch.waitingTime

Definition at line 368 of file heppy_batch.py.