CMS 3D CMS Logo

Functions
heavyIonJetSetup Namespace Reference

Functions

def removeJECsForMC (process)
 
def removeL1FastJetJECs (process)
 

Function Documentation

◆ removeJECsForMC()

def heavyIonJetSetup.removeJECsForMC (   process)

Definition at line 7 of file heavyIonJetSetup.py.

7 def removeJECsForMC(process):
8  for label in process.producerNames().split():
9  module = getattr(process, label)
10  if module.type_() == "PATPFJetMETcorrInputProducer":
11  module.jetCorrLabel = 'Uncorrected'
12 
13  process.basicJetsForMet.jetCorrLabel = 'Uncorrected'

References submitPVValidationJobs.split().

◆ removeL1FastJetJECs()

def heavyIonJetSetup.removeL1FastJetJECs (   process)

Definition at line 1 of file heavyIonJetSetup.py.

1 def removeL1FastJetJECs(process):
2  for label in process.producerNames().split():
3  module = getattr(process, label)
4  if module.type_() == "PATPFJetMETcorrInputProducer":
5  module.offsetCorrLabel = ''
6 

References submitPVValidationJobs.split().

heavyIonJetSetup.removeJECsForMC
def removeJECsForMC(process)
Definition: heavyIonJetSetup.py:7
heavyIonJetSetup.removeL1FastJetJECs
def removeL1FastJetJECs(process)
Definition: heavyIonJetSetup.py:1
submitPVValidationJobs.split
def split(sequence, size)
Definition: submitPVValidationJobs.py:352