#include "NueConvention.h"#include "AnalysisNtuples/ANtpDefaultValue.h"#include "TMath.h"#include "AnalysisNtuples/ANtpTruthInfoBeam.h"#include "NueAna/ANtpTruthInfoBeamNue.h"#include "MCNtuple/NtpMCTruth.h"#include "NueAna/NueRecord.h"#include "MessageService/MsgService.h"Go to the source code of this file.
Functions | |
| CVSID ("") | |
| bool | operator> (FilePosition one, FilePosition two) |
| bool | operator< (FilePosition one, FilePosition two) |
| bool | operator== (FilePosition one, FilePosition two) |
|
|
|
|
||||||||||||
|
Definition at line 595 of file NueConvention.cxx. 00596 {
00597 bool result = false;
00598 if(one.Run < two.Run) result = true;
00599 if(one.Run == two.Run && one.SubRun < two.SubRun) result = true;
00600 if(one.Run == two.Run && one.SubRun == two.SubRun && one.Snarl < two.Snarl) result = true;
00601 if(one.Run == two.Run && one.SubRun == two.SubRun && one.Snarl == two.Snarl &&
00602 one.Event < two.Event) result = true;
00603
00604
00605 return result;
00606 }
|
|
||||||||||||
|
Definition at line 608 of file NueConvention.cxx. 00609 {
00610 bool result = false;
00611 if(one.Run == two.Run && one.SubRun == two.SubRun && one.Snarl == two.Snarl &&
00612 one.Event == two.Event) result = true;
00613
00614 return result;
00615 }
|
|
||||||||||||
|
Definition at line 581 of file NueConvention.cxx. 00582 {
00583 bool result = false;
00584 if(one.Run > two.Run) result = true;
00585 if(one.Run == two.Run && one.SubRun > two.SubRun) result = true;
00586 if(one.Run == two.Run && one.SubRun == two.SubRun && one.Snarl > two.Snarl) result = true;
00587 if(one.Run == two.Run && one.SubRun == two.SubRun && one.Snarl == two.Snarl &&
00588 one.Event > two.Event) result = true;
00589
00590
00591 return result;
00592 }
|
1.3.9.1