00001 // $Id: TXXXEvent.cxx 930 2013-01-24 16:10:10Z linev $ 00002 //----------------------------------------------------------------------- 00003 // The GSI Online Offline Object Oriented (Go4) Project 00004 // Experiment Data Processing at EE department, GSI 00005 //----------------------------------------------------------------------- 00006 // Copyright (C) 2000- GSI Helmholtzzentrum für Schwerionenforschung GmbH 00007 // Planckstr. 1, 64291 Darmstadt, Germany 00008 // Contact: http://go4.gsi.de 00009 //----------------------------------------------------------------------- 00010 // This software can be used under the license agreements as stated 00011 // in Go4License.txt file which is part of the distribution. 00012 //----------------------------------------------------------------------- 00013 00014 #include "TXXXEvent.h" 00015 00016 #include "TGo4Log.h" 00017 00018 //*********************************************************** 00019 TXXXEvent::TXXXEvent() : 00020 TGo4EventElement() 00021 { 00022 TGo4Log::Info("TXXXEvent: Create instance"); 00023 } 00024 //*********************************************************** 00025 TXXXEvent::TXXXEvent(const char* name) : 00026 TGo4EventElement(name) 00027 { 00028 TGo4Log::Info("TXXXEvent: Create instance %s", name); 00029 } 00030 //*********************************************************** 00031 TXXXEvent::~TXXXEvent() 00032 { 00033 TGo4Log::Info("TXXXEvent: Delete instance"); 00034 } 00035 00036 //----------------------------------------------------------- 00037 void TXXXEvent::Clear(Option_t *t) 00038 { 00039 // all members should be cleared. 00040 memset((void*) &fCrate1[0],0, sizeof(fCrate1)); 00041 memset((void*) &fCrate2[0],0, sizeof(fCrate2)); 00042 }