CMS 3D CMS Logo

List of all members | Public Member Functions | Static Public Attributes | Private Attributes
upgradeWorkflowComponents.PatatrackWorkflow Class Reference
Inheritance diagram for upgradeWorkflowComponents.PatatrackWorkflow:
upgradeWorkflowComponents.UpgradeWorkflow

Public Member Functions

def __init__ (self, digi={}, reco={}, harvest={}, kwargs)
 
def condition (self, fragment, stepList, key, hasHarvest)
 
def setup_ (self, step, stepName, stepDict, k, properties)
 
- Public Member Functions inherited from upgradeWorkflowComponents.UpgradeWorkflow
def __init__ (self, steps, PU, suffix, offset)
 
def condition (self, fragment, stepList, key, hasHarvest)
 
def getStepName (self, step, extra="")
 
def getStepNamePU (self, step, extra="")
 
def init (self, stepDict)
 
def preventReuse (self, stepName, stepDict, k)
 
def setup (self, stepDict, k, properties)
 
def setup_ (self, step, stepName, stepDict, k, properties)
 
def setupPU (self, stepDict, k, properties)
 
def setupPU_ (self, step, stepName, stepDict, k, properties)
 
def workflow (self, workflows, num, fragment, stepList, key, hasHarvest)
 
def workflow_ (self, workflows, num, fragment, stepList, key)
 

Static Public Attributes

 digi
 
 harvest
 
 offset
 
 reco
 
 suffix
 

Private Attributes

 __digi
 
 __harvest
 
 __reco
 

Additional Inherited Members

- Public Attributes inherited from upgradeWorkflowComponents.UpgradeWorkflow
 allowReuse
 
 offset
 
 PU
 
 steps
 
 suffix
 

Detailed Description

Definition at line 748 of file upgradeWorkflowComponents.py.

Constructor & Destructor Documentation

◆ __init__()

def upgradeWorkflowComponents.PatatrackWorkflow.__init__ (   self,
  digi = {},
  reco = {},
  harvest = {},
  kwargs 
)

Definition at line 749 of file upgradeWorkflowComponents.py.

749  def __init__(self, digi = {}, reco = {}, harvest = {}, **kwargs):
750  # adapt the parameters for the UpgradeWorkflow init method
751  super(PatatrackWorkflow, self).__init__(
752  steps = [
753  'Digi',
754  'DigiTrigger',
755  'Reco',
756  'RecoFakeHLT',
757  'HARVEST',
758  'HARVESTFakeHLT',
759  'RecoGlobal',
760  'HARVESTGlobal',
761  'RecoNano',
762  'RecoNanoFakeHLT',
763  'HARVESTNano',
764  'HARVESTNanoFakeHLT',
765  'Nano',
766  'ALCA',
767  'ALCAPhase2'
768  ],
769  PU = [],
770  **kwargs)
771  self.__digi = digi
772  self.__reco = reco
773  self.__reco.update({
774  '--datatier': 'GEN-SIM-RECO,DQMIO',
775  '--eventcontent': 'RECOSIM,DQM'
776  })
777  self.__harvest = harvest
778 
def __init__(self, dataset, job_number, job_id, job_name, isDA, isMC, applyBOWS, applyEXTRACOND, extraconditions, runboundary, lumilist, intlumi, maxevents, gt, allFromGT, alignmentDB, alignmentTAG, apeDB, apeTAG, bowDB, bowTAG, vertextype, tracktype, refittertype, ttrhtype, applyruncontrol, ptcut, CMSSW_dir, the_dir)
#define update(a, b)

Member Function Documentation

◆ condition()

def upgradeWorkflowComponents.PatatrackWorkflow.condition (   self,
  fragment,
  stepList,
  key,
  hasHarvest 
)

Definition at line 779 of file upgradeWorkflowComponents.py.

References any(), and upgradeWorkflowComponents.UpgradeWorkflow.suffix.

779  def condition(self, fragment, stepList, key, hasHarvest):
780  # select only a subset of the workflows
781  selected = [
782  ('2018' in key and fragment == "TTbar_13"),
783  ('2021' in key and fragment == "TTbar_14TeV" and 'FS' not in key),
784  ('2023' in key and fragment == "TTbar_14TeV" and 'FS' not in key),
785  ('2018' in key and fragment == "ZMM_13"),
786  ('2021' in key and fragment == "ZMM_14" and 'FS' not in key),
787  ('2023' in key and fragment == "ZMM_14" and 'FS' not in key),
788  ('2026D88' in key and fragment == "TTbar_14TeV" and "PixelOnly" in self.suffix)
789  ]
790  result = any(selected) and hasHarvest
791 
792  return result
793 
bool any(const std::vector< T > &v, const T &what)
Definition: ECalSD.cc:37

◆ setup_()

def upgradeWorkflowComponents.PatatrackWorkflow.setup_ (   self,
  step,
  stepName,
  stepDict,
  k,
  properties 
)

Definition at line 794 of file upgradeWorkflowComponents.py.

References upgradeWorkflowComponents.PatatrackWorkflow.__digi, upgradeWorkflowComponents.UpgradeWorkflow_weightedVertex.__harvest, upgradeWorkflowComponents.PatatrackWorkflow.__harvest, upgradeWorkflowComponents.UpgradeWorkflow_weightedVertex.__reco, and upgradeWorkflowComponents.PatatrackWorkflow.__reco.

794  def setup_(self, step, stepName, stepDict, k, properties):
795  # skip ALCA and Nano steps (but not RecoNano or HARVESTNano for Run3)
796  if 'ALCA' in step or 'Nano'==step:
797  stepDict[stepName][k] = None
798  elif 'Digi' in step:
799  if self.__digi is None:
800  stepDict[stepName][k] = None
801  else:
802  stepDict[stepName][k] = merge([self.__digi, stepDict[step][k]])
803  elif 'Reco' in step:
804  if self.__reco is None:
805  stepDict[stepName][k] = None
806  else:
807  stepDict[stepName][k] = merge([self.__reco, stepDict[step][k]])
808  elif 'HARVEST' in step:
809  if self.__harvest is None:
810  stepDict[stepName][k] = None
811  else:
812  stepDict[stepName][k] = merge([self.__harvest, stepDict[step][k]])
813 
814 # Pixel-only quadruplets workflow running on CPU
815 # - HLT on CPU
816 # - Pixel-only reconstruction on CPU, with DQM and validation
817 # - harvesting
818 upgradeWFs['PatatrackPixelOnlyCPU'] = PatatrackWorkflow(
Definition: merge.py:1

Member Data Documentation

◆ __digi

upgradeWorkflowComponents.PatatrackWorkflow.__digi
private

◆ __harvest

upgradeWorkflowComponents.PatatrackWorkflow.__harvest
private

◆ __reco

upgradeWorkflowComponents.PatatrackWorkflow.__reco
private

◆ digi

upgradeWorkflowComponents.PatatrackWorkflow.digi
static

Definition at line 819 of file upgradeWorkflowComponents.py.

◆ harvest

upgradeWorkflowComponents.PatatrackWorkflow.harvest
static

Definition at line 826 of file upgradeWorkflowComponents.py.

◆ offset

upgradeWorkflowComponents.PatatrackWorkflow.offset
static

Definition at line 830 of file upgradeWorkflowComponents.py.

◆ reco

upgradeWorkflowComponents.PatatrackWorkflow.reco
static

Definition at line 822 of file upgradeWorkflowComponents.py.

◆ suffix

upgradeWorkflowComponents.PatatrackWorkflow.suffix
static

Definition at line 829 of file upgradeWorkflowComponents.py.