#include <vector>#include "Rtypes.h"#include "PhysicsNtuple/DataItem.h"#include "PhysicsNtuple/Basic.h"#include "PhysicsNtuple/RecoNu.h"#include "PhysicsNtuple/Vertex.h"Go to the source code of this file.
Namespaces | |
| namespace | Anp |
Classes | |
| class | Anp::Event |
Functions | |
| bool | operator== (short index, const Event &event) |
| bool | operator== (const Event &event, short index) |
| bool | operator== (const Event &lhs, const Event &rhs) |
| bool | operator== (const Event &event, const Shower &shower) |
| bool | operator== (const Shower &shower, const Event &event) |
| bool | operator== (const Track &track, const Event &event) |
| bool | operator== (const Event &event, const Track &track) |
|
||||||||||||
|
Definition at line 143 of file PhysicsNtuple/Event.cxx. References Anp::Event::MatchTrack(), and Anp::Track::TrackIndex(). 00144 {
00145 return event.MatchTrack(track.TrackIndex());
00146 }
|
|
||||||||||||
|
Definition at line 137 of file PhysicsNtuple/Event.cxx. References Anp::Event::MatchTrack(), and Anp::Track::TrackIndex(). 00138 {
00139 return event.MatchTrack(track.TrackIndex());
00140 }
|
|
||||||||||||
|
Definition at line 131 of file PhysicsNtuple/Event.cxx. References Anp::Event::MatchShower(), and Anp::Shower::ShowerIndex(). 00132 {
00133 return event.MatchShower(shower.ShowerIndex());
00134 }
|
|
||||||||||||
|
Definition at line 125 of file PhysicsNtuple/Event.cxx. References Anp::Event::MatchShower(), and Anp::Shower::ShowerIndex(). 00126 {
00127 return event.MatchShower(shower.ShowerIndex());
00128 }
|
|
||||||||||||
|
Definition at line 166 of file PhysicsNtuple/Event.h. References Anp::Event::EventIndex(). 00167 {
00168 return (lhs.EventIndex() == rhs.EventIndex());
00169 }
|
|
||||||||||||
|
Definition at line 162 of file PhysicsNtuple/Event.h. References Anp::Event::EventIndex(). 00163 {
00164 return (index == event.EventIndex());
00165 }
|
|
||||||||||||
|
Definition at line 158 of file PhysicsNtuple/Event.h. References Anp::Event::EventIndex(). 00159 {
00160 return (index == event.EventIndex());
00161 }
|
1.3.9.1