18 m_HadIsolationMask(0),
19 m_useIsolationMask(false)
30 int count =
static_cast<int>(m_EmIsolation * caloInfo().globalEmScale() );
32 if (
count > fgCaloIsolationOff) {
33 count = fgCaloIsolationOff;
41 int count =
static_cast<int>(m_HadIsolation * caloInfo().globalEmScale() );
42 if (
count > fgCaloIsolationOff) {
43 count = fgCaloIsolationOff;
50 int count =
static_cast<int>(m_HadVeto * caloInfo().globalEmScale() );
51 if (
count > fgCaloIsolationOff) {
52 count = fgCaloIsolationOff;
60 int count =
static_cast<int>(m_Ptcut * caloInfo().globalEmScale());
62 if (
count > fgCaloClusterOff) {
63 count = fgCaloClusterOff;
71 cout <<
indent <<
"-----------------------" << endl;
72 cout <<
indent <<
"ClusterThresholdValue: " << endl;
74 cout <<
indent <<
"\t Priority: " << m_Priority << endl;
75 cout <<
indent <<
"\t Type: " << m_Type << endl;
76 cout <<
indent <<
"\t ptcut: " << m_Ptcut
77 <<
" count=" << thresholdValueCount() << endl;
78 cout <<
indent <<
"\t em_isolation: " << m_EmIsolation
79 <<
" count=" << emIsolationCount() << endl;
80 cout <<
indent <<
"\t had_isolation: " << m_HadIsolation
81 <<
" count=" << hadIsolationCount() << endl;
82 cout <<
indent <<
"\t had_veto: " << m_HadVeto
83 <<
" count=" << hadVetoCount() << endl;
84 cout <<
indent <<
"\t iso mask: " << m_IsolationMask << endl;
85 cout <<
indent <<
"\t phi_min: " << m_PhiMin << endl;
86 cout <<
indent <<
"\t phi_max: " << m_PhiMax << endl;
87 cout <<
indent <<
"\t eta_min: " << m_EtaMin << endl;
88 cout <<
indent <<
"\t eta_max: " << m_EtaMax << endl;
93 indent(xmlfile, indentLevel, indentWidth)
94 <<
"<TriggerThresholdValue"
95 <<
" em_isolation=\"" << m_EmIsolation <<
"\""
96 <<
" etamin=\"" << m_EtaMin <<
"\""
97 <<
" etamax=\"" << m_EtaMax <<
"\""
98 <<
" had_isolation=\"" << m_HadIsolation <<
"\""
99 <<
" had_veto=\"" << m_HadVeto <<
"\"";
100 if(useIsolationMask()) {
103 xmlfile <<
" name=\"" <<
name() <<
"\""
104 <<
" phimin=\"" << m_PhiMin <<
"\""
105 <<
" phimax=\"" << m_PhiMax <<
"\""
106 <<
" priority=\"" << m_Priority <<
"\""
107 <<
" thresholdval=\"" << m_Ptcut <<
"\""
108 <<
" type=\"" << m_Type <<
"\""