CMS 3D CMS Logo

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

Functions

def customise
 
def customise_Digi
 
def customise_DigiToRaw
 
def customise_DQM
 
def customise_harvesting
 
def customise_L1Emulator
 
def customise_RawToDigi
 
def customise_Reco
 
def customise_Validation
 

Function Documentation

def rpcCustoms.customise (   process)

Definition at line 3 of file rpcCustoms.py.

References customise_Digi(), customise_DigiToRaw(), customise_DQM(), customise_harvesting(), customise_L1Emulator(), customise_RawToDigi(), customise_Reco(), and customise_Validation().

3 
4 def customise(process):
5  if hasattr(process,'digitisation_step'):
6  process=customise_Digi(process)
7  if hasattr(process,'L1simulation_step'):
8  process=customise_L1Emulator(process)
9  if hasattr(process,'DigiToRaw'):
10  process=customise_DigiToRaw(process)
11  if hasattr(process,'RawToDigi'):
12  process=customise_RawToDigi(process)
13  if hasattr(process,'reconstruction'):
14  process=customise_Reco(process)
15  if hasattr(process,'dqmoffline_step'):
16  process=customise_DQM(process)
17  if hasattr(process,'dqmHarvesting'):
18  process=customise_harvesting(process)
19  if hasattr(process,'validation_step'):
20  process=customise_Validation(process)
21  return process
def customise_Digi
Definition: rpcCustoms.py:22
def customise_Reco
Definition: rpcCustoms.py:41
def customise_DQM
Definition: rpcCustoms.py:44
def customise_L1Emulator
Definition: rpcCustoms.py:25
def customise_DigiToRaw
Definition: rpcCustoms.py:35
def customise_harvesting
Definition: rpcCustoms.py:50
def customise_RawToDigi
Definition: rpcCustoms.py:38
def customise
Definition: rpcCustoms.py:3
def customise_Validation
Definition: rpcCustoms.py:47
def rpcCustoms.customise_Digi (   process)

Definition at line 22 of file rpcCustoms.py.

Referenced by customise().

22 
23 def customise_Digi(process):
24  return process
def customise_Digi
Definition: rpcCustoms.py:22
def rpcCustoms.customise_DigiToRaw (   process)

Definition at line 35 of file rpcCustoms.py.

Referenced by customise().

35 
36 def customise_DigiToRaw(process):
37  return process
def customise_DigiToRaw
Definition: rpcCustoms.py:35
def rpcCustoms.customise_DQM (   process)

Definition at line 44 of file rpcCustoms.py.

Referenced by customise().

44 
45 def customise_DQM(process):
46  return process
def customise_DQM
Definition: rpcCustoms.py:44
def rpcCustoms.customise_harvesting (   process)

Definition at line 50 of file rpcCustoms.py.

Referenced by customise().

50 
51 def customise_harvesting(process):
52  return (process)
def customise_harvesting
Definition: rpcCustoms.py:50
def rpcCustoms.customise_L1Emulator (   process)

Definition at line 25 of file rpcCustoms.py.

Referenced by customise().

25 
26 def customise_L1Emulator(process):
27  ## this comes after GE2/1 in gemCustoms.py
28  process.simCscTriggerPrimitiveDigis.alctSLHCME3141 = process.simCscTriggerPrimitiveDigis.alctSLHC.clone()
29  process.simCscTriggerPrimitiveDigis.clctSLHCME3141 = process.simCscTriggerPrimitiveDigis.clctSLHC.clone()
30  process.simCscTriggerPrimitiveDigis.alctSLHCME3141.alctNplanesHitPattern = 3
31  process.simCscTriggerPrimitiveDigis.alctSLHCME3141.runME3141ILT = cms.bool(True)
32  process.simCscTriggerPrimitiveDigis.clctSLHCME3141.clctNplanesHitPattern = 3
33  process.simCscTriggerPrimitiveDigis.clctSLHCME3141.clctPidThreshPretrig = 2
34  return process
def customise_L1Emulator
Definition: rpcCustoms.py:25
def rpcCustoms.customise_RawToDigi (   process)

Definition at line 38 of file rpcCustoms.py.

Referenced by customise().

38 
39 def customise_RawToDigi(process):
40  return process
def customise_RawToDigi
Definition: rpcCustoms.py:38
def rpcCustoms.customise_Reco (   process)

Definition at line 41 of file rpcCustoms.py.

Referenced by customise().

41 
42 def customise_Reco(process):
43  return process
def customise_Reco
Definition: rpcCustoms.py:41
def rpcCustoms.customise_Validation (   process)

Definition at line 47 of file rpcCustoms.py.

Referenced by customise().

47 
48 def customise_Validation(process):
49  return process
def customise_Validation
Definition: rpcCustoms.py:47