Public Member Functions | |
| bool | operator() (const SimDigit &d1, const SimDigit &d2) const |
|
||||||||||||
|
Definition at line 16 of file SimDigitList.cxx. References SimDigit::GetErrors(), and SimDigit::GetTime(). 00016 {
00017
00018 if(d1.GetErrors())
00019 if(d2.GetErrors()) return (d1.GetTime()<d2.GetTime());
00020 else return false;
00021
00022 if(d2.GetErrors()) return true;
00023
00024 return (d1.GetTime()<d2.GetTime());
00025 };
|
1.3.9.1