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
clustering3d.CreateHistoInterpolatedMax1stOrder Class Reference
Inheritance diagram for clustering3d.CreateHistoInterpolatedMax1stOrder:

Public Member Functions

def __call__
 
def __init__
 

Public Attributes

 clustering_parameters
 
 seeding_parameters
 

Detailed Description

Definition at line 119 of file clustering3d.py.

Constructor & Destructor Documentation

def clustering3d.CreateHistoInterpolatedMax1stOrder.__init__ (   self,
  distance = histoMax_C3d_clustering_params.dR_multicluster,
  nBins_X1 = histoInterpolatedMax_C3d_params.nBins_X1_histo_multicluster,
  nBins_X2 = histoInterpolatedMax_C3d_params.nBins_X2_histo_multicluster,
  binSumsHisto = histoInterpolatedMax_C3d_params.binSumsHisto,
  seed_threshold = histoInterpolatedMax_C3d_params.threshold_histo_multicluster,
  shape_threshold = histoMax_C3d_clustering_params.shape_threshold,
  shape_distance = histoMax_C3d_clustering_params.shape_distance 
)

Definition at line 128 of file clustering3d.py.

129  ):
130  self.seeding_parameters = histoInterpolatedMax_C3d_params.clone(
131  neighbour_weights = neighbour_weights_1stOrder
132  )
133  self.clustering_parameters = histoMax_C3d_clustering_params.clone()
134  set_histomax_seeding_params(self.seeding_parameters, nBins_X1, nBins_X2, binSumsHisto, seed_threshold)
135  set_histomax_clustering_params(self.clustering_parameters, distance, shape_threshold, shape_distance)
def set_histomax_clustering_params

Member Function Documentation

def clustering3d.CreateHistoInterpolatedMax1stOrder.__call__ (   self,
  process,
  inputs 
)

Definition at line 136 of file clustering3d.py.

References clustering3d.CreateHistoMax.clustering_parameters, clustering3d.CreateHistoMaxVariableDr.clustering_parameters, clustering3d.CreateHistoMaxXYVariableDr.clustering_parameters, clustering3d.CreateHistoInterpolatedMax1stOrder.clustering_parameters, clustering3d.CreateHistoMax.seeding_parameters, clustering3d.CreateHistoMaxVariableDr.seeding_parameters, clustering3d.CreateHistoMaxXYVariableDr.seeding_parameters, and clustering3d.CreateHistoInterpolatedMax1stOrder.seeding_parameters.

137  def __call__(self, process, inputs):
138  producer = process.hgcalBackEndLayer2Producer.clone(
139  InputCluster = cms.InputTag(inputs)
140  )
141  producer.ProcessorParameters.C3d_parameters.histoMax_C3d_seeding_parameters = self.seeding_parameters
142  producer.ProcessorParameters.C3d_parameters.histoMax_C3d_clustering_parameters = self.clustering_parameters
143  return producer
144 

Member Data Documentation

clustering3d.CreateHistoInterpolatedMax1stOrder.clustering_parameters

Definition at line 132 of file clustering3d.py.

Referenced by clustering3d.CreateHistoInterpolatedMax1stOrder.__call__(), clustering3d.CreateHistoInterpolatedMax2ndOrder.__call__(), and clustering3d.CreateHistoThreshold.__call__().

clustering3d.CreateHistoInterpolatedMax1stOrder.seeding_parameters

Definition at line 129 of file clustering3d.py.

Referenced by clustering3d.CreateHistoInterpolatedMax1stOrder.__call__(), clustering3d.CreateHistoInterpolatedMax2ndOrder.__call__(), and clustering3d.CreateHistoThreshold.__call__().