CMS 3D CMS Logo

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

Functions

def custom_clustering_standalone
 
def custom_layer1_truncation
 
def custom_stage1_truncation
 
def custom_tower_standalone
 

Function Documentation

def customNewProcessors.custom_clustering_standalone (   process)

Definition at line 20 of file customNewProcessors.py.

20 
21 def custom_clustering_standalone(process):
22  process.hgcalBackEndLayer2Producer.ProcessorParameters.ProcessorName = cms.string('HGCalBackendLayer2Processor3DClusteringSA')
23  process.hgcalBackEndLayer2Producer.ProcessorParameters.DistributionParameters = truncation_params
24  return process
def customNewProcessors.custom_layer1_truncation (   process)

Definition at line 6 of file customNewProcessors.py.

6 
7 def custom_layer1_truncation(process):
8  parameters = layer1truncation_proc.clone()
9  process.hgcalBackEndLayer1Producer.ProcessorParameters = parameters
10  process.hgcalBackEndLayer2Producer.InputCluster = cms.InputTag('hgcalBackEndLayer1Producer:HGCalBackendLayer1Processor')
11  process.hgcalTowerProducer.InputTriggerCells = cms.InputTag('hgcalBackEndLayer1Producer:HGCalBackendLayer1Processor')
12  return process
def customNewProcessors.custom_stage1_truncation (   process)

Definition at line 13 of file customNewProcessors.py.

13 
14 def custom_stage1_truncation(process):
15  parameters = stage1truncation_proc.clone()
16  process.hgcalBackEndLayer1Producer.ProcessorParameters = parameters
17  process.hgcalBackEndLayer2Producer.InputCluster = cms.InputTag('hgcalBackEndStage1Producer:HGCalBackendStage1Processor')
18  process.hgcalTowerProducer.InputTriggerCells = cms.InputTag('hgcalBackEndStage1Producer:HGCalBackendStage1Processor')
19  return process
def customNewProcessors.custom_tower_standalone (   process)

Definition at line 25 of file customNewProcessors.py.

25 
26 def custom_tower_standalone(process):
27  process.hgcalTowerProducer.ProcessorParameters.ProcessorName = cms.string('HGCalTowerProcessorSA')
28  return process