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

DigiRerootInfo.h

Go to the documentation of this file.
00001 #ifndef DIGIREROOTINFO_H
00002 #define DIGIREROOTINFO_H
00003 
00013 
00014 #include <TNamed.h>
00015 #include "Validity/VldContext.h"
00016 
00017 class DigiRerootInfo : public TNamed
00018 {
00019  public:
00020   DigiRerootInfo();
00021   DigiRerootInfo(Int_t runNo, 
00022                  Int_t eventNo, 
00023                  Int_t eventRecord,
00024                  const VldContext& context);
00025   ~DigiRerootInfo() {};
00026   
00027   Int_t GetRerootRun() { return fReroot_run; };
00028   Int_t GetRerootEventNo() { return fReroot_event; };
00029   Int_t GetRerootEventRecord() { return fReroot_eventRecord; };
00030   VldContext GetRerootVldContext() { return fReroot_context; };
00031 
00032  private:
00033   Int_t  fReroot_run;
00034   Int_t  fReroot_event;
00035   Int_t  fReroot_eventRecord;
00036   VldContext fReroot_context;
00037   
00038   ClassDef(DigiRerootInfo,1);
00039 };
00040 
00041 #endif

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