Main Page | Namespace List | Class Hierarchy | Alphabetical List | Class List | Directories | File List | Namespace Members | Class Members | File Members | Related Pages

io::tst::EventFilter::Key Class Reference

Run/event key for indexing the include/exclude flags. More...

List of all members.

Public Member Functions

 Key ()
 Key (int r, int e)
bool operator== (const Key &rhs) const
bool operator< (const Key &rhs) const

Public Attributes

int fRun
 Run number.
int fEvent
 Event number.


Detailed Description

Run/event key for indexing the include/exclude flags.

Definition at line 25 of file EventFilter.h.


Constructor & Destructor Documentation

io::tst::EventFilter::Key::Key  )  [inline]
 

Definition at line 27 of file EventFilter.h.

00027 : fRun(0),fEvent(0) { }

io::tst::EventFilter::Key::Key int  r,
int  e
[inline]
 

Definition at line 28 of file EventFilter.h.

00028 : fRun(r), fEvent(e) { }


Member Function Documentation

bool io::tst::EventFilter::Key::operator< const Key rhs  )  const [inline]
 

Definition at line 33 of file EventFilter.h.

References fEvent, and fRun.

00033                                            { 
00034         if (fRun<rhs.fRun) return true;
00035         if (fRun==rhs.fRun && fEvent<rhs.fEvent) return true;
00036         return false;
00037       }

bool io::tst::EventFilter::Key::operator== const Key rhs  )  const [inline]
 

Definition at line 29 of file EventFilter.h.

References fEvent, and fRun.

00029                                             { 
00030         if (fRun == rhs.fRun && fEvent == rhs.fEvent) return true;
00031         return false;
00032       }


Member Data Documentation

int io::tst::EventFilter::Key::fEvent
 

Event number.

Definition at line 39 of file EventFilter.h.

Referenced by operator<(), and operator==().

int io::tst::EventFilter::Key::fRun
 

Run number.

Definition at line 38 of file EventFilter.h.

Referenced by operator<(), and operator==().


The documentation for this class was generated from the following file:
Generated on Sun Nov 22 04:45:31 2009 for NOvA Offline by  doxygen 1.3.9.1