00001 #ifndef EVENTPTRDEF_H
00002 #define EVENTPTRDEF_H
00003
00004 namespace asg {
00005 class SgTEvent;
00006 }
00007 class StoreGateSvc;
00008
00009 #ifdef ASGTOOL_STANDALONE
00010 typedef asg::SgTEvent* EventPtr_t;
00011 #elif defined(ASGTOOL_ATHENA)
00012 typedef StoreGateSvc* EventPtr_t;
00013 #else
00014 # error "Wrong environment configuration detected!"
00015 #endif
00016
00017 #endif