00001
00002 #define EVENTCNV_CPP
00003
00004
00005
00006 #include "GaudiKernel/CnvFactory.h"
00007 #include "GaudiKernel/RegistryEntry.h"
00008 #include "EventCnv.h"
00009 #include "GaudiKernel/MsgStream.h"
00010
00011 #include "GlastEvent/TopLevel/Event.h"
00012
00013
00014
00015
00016 static const char* rcsid = "$Id: EventCnv.cpp,v 1.2 2001/04/19 01:32:29 igable Exp $";
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030 static CnvFactory<EventCnv> s_factory;
00031 const ICnvFactory& EventCnvFactory = s_factory;
00032
00033
00034 StatusCode EventCnv::updateObj(int* iarray, Event* pEvent) {
00035 MsgStream log(messageService(), "EventCnv");
00036 log << MSG::DEBUG << "EventCnv::updateObj" << endreq;
00037 return StatusCode::SUCCESS;
00038 }
00039
00040
00041
00042
00043
00044
00045
00046
00047
00048
00049
00050
00051
00052
00053
00054
00055
00056
00057
00058
00059
00061 EventCnv::EventCnv(ISvcLocator* svc)
00062 : ItemCnv<Event>(svc)
00063 {
00064 declareObject("/Event", objType(), "PASS");
00065 }
00066
00067
00069 EventCnv::~EventCnv() { }
00070