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

EventQuality.cxx

Go to the documentation of this file.
00001 #include "NueAna/ParticlePID/ParticleFinder/EventQuality.h"
00002 
00003 ClassImp(EventQuality)
00004 
00005 EventQuality::EventQuality()
00006 {
00007         Reset();
00008 }
00009 
00010 EventQuality::~EventQuality()
00011 {}
00012 
00013 
00014 void EventQuality::Reset()
00015 {
00016 
00017         single_view_long_muon=0;
00018         single_view_primary_shower=0;
00019         
00020         foundlongmuon=0;
00021         foundprimaryshower=0;
00022         
00023 }
00024 
00025 
00026 bool EventQuality::IsQuality()
00027 {
00028         bool isGood=true;
00029 
00030         isGood = isGood && single_view_long_muon==0;
00031         isGood = isGood && single_view_primary_shower==0;
00032 
00033         return isGood;
00034 }
00035 

Generated on Mon Feb 15 11:06:39 2010 for loon by  doxygen 1.3.9.1