--- yoda/event/RegistryEvent.h 2006/02/07 08:42:43 5.3 +++ yoda/event/RegistryEvent.h 2006/03/27 08:42:15 6.1 @@ -1,6 +1,6 @@ /** @file - * $Source: /opt/cvsmanager/yoda/event/RegistryEvent.h,v $ - * $Id: RegistryEvent.h,v 5.2 2006/02/04 12:37:43 kusanagi Exp $ + * $Source: /home/cvsmanager/yoda/event/RegistryEvent.h,v $ + * $Id: RegistryEvent.h,v 6.0 2006/02/07 17:11:07 kusanagi Exp $ * $Author: kusanagi $ * * Header file for the RegistryEvent class. @@ -9,6 +9,7 @@ #define REGISTRY_EVENT_H #include "TObject.h" +#include "TString.h" namespace pamela { /** * RegistryEvent data Wrapper @@ -28,6 +29,12 @@ */ TString originFile; + /* Unique ID of the RUN from which this data cames from. + * Even if this ID cames from the production database it can be considered decoupled + * from the database. It is used when many RUNs are collected in a single file. + */ + UInt_t IDRun; + /* Because on transmission multiple copies of data could be unpacked, a special procedure * collect all the event just one time each. This parameter is related to the entry relative * to that selected event. @@ -36,7 +43,7 @@ RegistryEvent(); ~RegistryEvent(void){}; - ClassDef(RegistryEvent, 2) + ClassDef(RegistryEvent, 3) }; }