Public Member Functions | |
| bool | operator() (const std::pair< Int_t, Int_t > &s1, const std::pair< Int_t, Int_t > &s2) const |
|
||||||||||||
|
Definition at line 68 of file MadChain.h. 00070 {
00071 if(s1.first < s2.first) return true;
00072 else if(s1.first > s2.first) return false;
00073 else {
00074 if(s1.second<s2.second) return true;
00075 else return false;
00076 }
00077 }
|
1.3.9.1