CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Pages
Functions
fastSimCustoms Namespace Reference

Functions

def customise_fastSimPostLS1
 
def customise_fastSimProducer
 

Function Documentation

def fastSimCustoms.customise_fastSimPostLS1 (   process)

Definition at line 3 of file fastSimCustoms.py.

References customise_fastSimProducer().

Referenced by postLS1Customs.customisePostLS1_Common().

3 
4 def customise_fastSimPostLS1(process):
5 
6  if hasattr(process,'famosSimHits'):
7  process=customise_fastSimProducer(process)
8 
9  from FastSimulation.PileUpProducer.PileUpFiles_cff import puFileNames_13TeV
10  process.genMixPileUpFiles = cms.PSet(fileNames = puFileNames_13TeV)
11  if hasattr(process,'famosPileUp'):
12  if hasattr(process.famosPileUp,"PileUpSimulator"):
13  process.famosPileUp.PileUpSimulator.fileNames = puFileNames_13TeV
14 
15  return process
16 
def customise_fastSimProducer
def customise_fastSimPostLS1
def fastSimCustoms.customise_fastSimProducer (   process)

Definition at line 17 of file fastSimCustoms.py.

Referenced by customise_fastSimPostLS1().

17 
18 def customise_fastSimProducer(process):
19 
20  # enable 2015 HF shower library
21  process.famosSimHits.Calorimetry.HFShowerLibrary.useShowerLibrary = True
22 
23  # change default parameters
24  process.famosSimHits.ParticleFilter.pTMin = 0.1
25  process.famosSimHits.TrackerSimHits.pTmin = 0.1
26  process.famosSimHits.ParticleFilter.etaMax = 5.300
27 
28  return process
29 
30 
def customise_fastSimProducer