![]() |
Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
|
00001 #include <algorithm> 00002 00003 00014 #ifndef SCOREPAIR_HH 00015 #define SCOREPAIR_HH //!<Inclusion guard 00016 00019 class ScorePair 00020 { 00021 public: 00022 int A; 00023 int Z; 00024 double score; 00025 bool operator<(ScorePair rhs 00026 ) 00027 { return score > rhs.score; } 00028 }; 00029 #endif