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

ComparisonResultList.h

Go to the documentation of this file.
00001 #ifndef ComparisonResultList_h
00002 #define ComparisonResultList_h
00003 
00004 #include <list>
00005 #include "TObject.h"
00006 #include "ComparisonResult.h"
00007 
00008 using namespace std;
00009 
00010 class ComparisonResultList : public TObject {
00011 
00012  public:
00013   ComparisonResultList();
00014   ~ComparisonResultList();
00015   void Erase();
00016   int Size();
00017   float LastDeltalnL();
00018   void PopBack();
00019   void PushBack(ComparisonResult *cr_in);
00020   void Sort();
00021   void InsertSorted(ComparisonResult *cr_in);
00022   void PrintFirstLast();
00023   list<ComparisonResult> compResultList;
00024   list<ComparisonResult>::iterator iter;
00025   list<ComparisonResult>::iterator iter_end;
00026 
00027  private:
00028   ClassDef(ComparisonResultList,2);
00029 
00030 };
00031 
00032 #endif

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