CMS 3D CMS Logo

 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Properties Friends Macros Groups Pages
List of all members | Public Member Functions | Public Attributes
concentrator.CreateCustom Class Reference
Inheritance diagram for concentrator.CreateCustom:

Public Member Functions

def __call__
 
def __init__
 

Public Attributes

 processor
 

Detailed Description

Definition at line 156 of file concentrator.py.

Constructor & Destructor Documentation

def concentrator.CreateCustom.__init__ (   self,
  stcSize = custom_conc_proc.stcSize,
  type_energy_division = custom_conc_proc.type_energy_division,
  fixedDataSizePerHGCROC = custom_conc_proc.fixedDataSizePerHGCROC,
  triggercells = custom_conc_proc.NData,
  threshold_silicon = custom_conc_proc.threshold_silicon,
  threshold_scintillator = custom_conc_proc.threshold_scintillator,
  Method = custom_conc_proc.Method,
  coarsenTriggerCells = custom_conc_proc.coarsenTriggerCells,
  ctcSize = custom_conc_proc.ctcSize 
)

Definition at line 167 of file concentrator.py.

168  ):
169  self.processor = custom_conc_proc.clone(
170  stcSize = stcSize,
171  type_energy_division = type_energy_division,
172  fixedDataSizePerHGCROC = fixedDataSizePerHGCROC,
173  NData = triggercells,
174  threshold_silicon = threshold_silicon, # MipT
175  threshold_scintillator = threshold_scintillator, # MipT
176  Method = Method,
177  coarsenTriggerCells=coarsenTriggerCells,
178  ctcSize = ctcSize,
179  )

Member Function Documentation

def concentrator.CreateCustom.__call__ (   self,
  process,
  inputs 
)

Definition at line 180 of file concentrator.py.

References clustering2d_v2.RozBinTruncation.processor, concentrator.CreateSuperTriggerCell.processor, concentrator.CreateThreshold.processor, cscdqm::EventProcessorMutex.processor, concentrator.CreateBestChoice.processor, clustering2d.RozBinTruncation.processor, concentrator.CreateAutoencoder.processor, concentrator.CreateOneBitFraction.processor, concentrator.CreateMixedFeOptions.processor, cscdqm::Dispatcher.processor, and concentrator.CreateCustom.processor.

181  def __call__(self, process, inputs):
182  producer = process.hgcalConcentratorProducer.clone(
183  InputTriggerCells = cms.InputTag(inputs),
184  InputTriggerSums = cms.InputTag(inputs),
185  ProcessorParameters = self.processor
186  )
187  return producer
188 

Member Data Documentation

concentrator.CreateCustom.processor

Definition at line 168 of file concentrator.py.

Referenced by vfe.CreateVfe.__call__(), and concentrator.CreateCustom.__call__().