AMSDST
myInfo.h
Go to the documentation of this file.
1 // Authors: M.Duranti - INFN di Perugia
2 #ifndef myInfo_h
3 #define myInfo_h
4 
5 #include "TObject.h"
6 #include "TString.h"
7 
8 class myInfo: public TObject {
9  public:
11  myInfo();
13  ~myInfo();
14 
15  TString Url;
16  TString RepositoryRoot;
17  TString RepositoryUUID;
18 
22 
23  /* UInt_t Revision_remote; */
24  /* UInt_t LastChangedRev_remote; */
25  /* UInt_t LastChangedDate_remote; */
26 
27  std::vector<TString> OriginalFiles;
28 
29  public:
30  ClassDef(myInfo,6);
31 };
32 
33 #endif