CMS 3D CMS Logo

Functions
customizeMinPtForHitRecoveryInGluedDet Namespace Reference

Functions

def customizeHitRecoveryInGluedDetOff (process)
 
def customizeMinPtForHitRecoveryInGluedDet (process, value)
 
def esproducers_by_type (process, types)
 

Function Documentation

◆ customizeHitRecoveryInGluedDetOff()

def customizeMinPtForHitRecoveryInGluedDet.customizeHitRecoveryInGluedDetOff (   process)

◆ customizeMinPtForHitRecoveryInGluedDet()

def customizeMinPtForHitRecoveryInGluedDet.customizeMinPtForHitRecoveryInGluedDet (   process,
  value 
)

Definition at line 4 of file customizeMinPtForHitRecoveryInGluedDet.py.

References esproducers_by_type().

5  for esp in esproducers_by_type(process, "Chi2MeasurementEstimatorESProducer", "Chi2ChargeMeasurementEstimatorESProducer"):
6  esp.MinPtForHitRecoveryInGluedDet = cms.double(value)
7  return process

◆ esproducers_by_type()

def customizeMinPtForHitRecoveryInGluedDet.esproducers_by_type (   process,
  types 
)

Definition at line 2 of file customizeMinPtForHitRecoveryInGluedDet.py.

Referenced by customizeMinPtForHitRecoveryInGluedDet().

2 def esproducers_by_type(process, *types):
3  return (module for module in process._Process__esproducers.values() if module._TypedParameterizable__type in types)