#include "AthenaKernel/CLASS_DEF.h"
#include "AthContainers/DataVector.h"
#include <vector>
#include <string>
Go to the source code of this file.
◆ diff()
Comparison with feedback.
Definition at line 125 of file TileMuFeature.cxx.
127 if( std::abs(
a.eta() -
b.eta() ) > DELTA ) {
128 variableChange[
"eta" ] =
a.eta() -
b.eta();
130 if( std::abs(
a.phi() -
b.phi() ) > DELTA ) {
131 variableChange[
"phi" ] =
a.phi() -
b.phi();
133 if( (
a.quality() -
b.quality() ) > DELTA ) {
134 variableChange[
"quality" ] =
a.quality() -
b.quality();
◆ operator!=()
◆ operator<<()
◆ operator==()
Operator comparing two CombinedMuonFeature objects for equality.
Definition at line 116 of file TileMuFeature.cxx.
118 if( std::abs(
a.eta() -
b.eta() ) > DELTA )
return false;
119 if( std::abs(
a.phi() -
b.phi() ) > DELTA )
return false;
120 if( std::abs(
a.quality() -
b.quality() ) > DELTA )
return false;
◆ str()
Helper function for printing the object.
Helper function for printing the object.
Definition at line 100 of file TileMuFeature.cxx.
102 std::stringstream
ss;
104 ss <<
"eta: " <<
d.eta()
105 <<
"; phi: " <<
d.phi()
106 <<
"; quality: " <<
d.quality();