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

Public Member Functions

def __call__
 
def __init__
 

Public Attributes

 clustering_parameters
 
 seeding_parameters
 

Detailed Description

Definition at line 44 of file clustering3d.py.

Constructor & Destructor Documentation

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

Definition at line 53 of file clustering3d.py.

53 
54  ):
55  self.clustering_parameters = histoMax_C3d_clustering_params.clone()
56  self.seeding_parameters = histoMax_C3d_seeding_params.clone()
57  set_histomax_seeding_params(self.seeding_parameters, nBins_X1, nBins_X2, binSumsHisto, seed_threshold)
58  set_histomax_clustering_params(self.clustering_parameters, distance, shape_threshold, shape_distance)
def set_histomax_clustering_params

Member Function Documentation

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

Definition at line 59 of file clustering3d.py.

References clustering3d.CreateHistoMax.clustering_parameters, and clustering3d.CreateHistoMax.seeding_parameters.

59 
60  def __call__(self, process, inputs):
61  producer = process.hgcalBackEndLayer2Producer.clone(
62  InputCluster = cms.InputTag(inputs)
63  )
64  producer.ProcessorParameters.C3d_parameters.histoMax_C3d_clustering_parameters = self.clustering_parameters
65  producer.ProcessorParameters.C3d_parameters.histoMax_C3d_seeding_parameters = self.seeding_parameters
66  return producer
67 

Member Data Documentation

clustering3d.CreateHistoMax.clustering_parameters

Definition at line 54 of file clustering3d.py.

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

clustering3d.CreateHistoMax.seeding_parameters

Definition at line 55 of file clustering3d.py.

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