CMS 3D CMS Logo

Functions
customTriggerCellSelect Namespace Reference

Functions

def custom_triggercellselect_bestchoice (process, triggercells=best_conc_proc.NData)
 
def custom_triggercellselect_supertriggercell (process, stcSize=supertc_conc_proc.stcSize)
 
def custom_triggercellselect_threshold (process, threshold_silicon=threshold_conc_proc.triggercell_threshold_silicon, threshold_scintillator=threshold_conc_proc.triggercell_threshold_scintillator#in mipT)
 

Function Documentation

def customTriggerCellSelect.custom_triggercellselect_bestchoice (   process,
  triggercells = best_conc_proc.NData 
)

Definition at line 28 of file customTriggerCellSelect.py.

Referenced by custom_triggercellselect_threshold().

28  ):
29  parameters = best_conc_proc.clone(NData = triggercells)
30  process.hgcalConcentratorProducer.ProcessorParameters = parameters
31  return process
32 
def customTriggerCellSelect.custom_triggercellselect_supertriggercell (   process,
  stcSize = supertc_conc_proc.stcSize 
)

Definition at line 8 of file customTriggerCellSelect.py.

References custom_triggercellselect_threshold().

8  ):
9  parameters = supertc_conc_proc.clone(stcSize = stcSize)
10  process.hgcalConcentratorProducer.ProcessorParameters = parameters
11  return process
12 
13 
def customTriggerCellSelect.custom_triggercellselect_threshold (   process,
  threshold_silicon = threshold_conc_proc.triggercell_threshold_silicon,
  threshold_scintillator = threshold_conc_proc.triggercell_threshold_scintillator  # in mipT 
)

Definition at line 17 of file customTriggerCellSelect.py.

References custom_triggercellselect_bestchoice().

Referenced by custom_triggercellselect_supertriggercell().

17  ):
18  parameters = threshold_conc_proc.clone(
19  triggercell_threshold_silicon = threshold_silicon,
20  triggercell_threshold_scintillator = threshold_scintillator
21  )
22  process.hgcalConcentratorProducer.ProcessorParameters = parameters
23  return process
24 
25