00001 //---------------------------------------------------------------------------// 00007 // 00008 // 11-08-2004 Created file, but to be written!, Luciano 00009 //---------------------------------------------------------------------------// 00010 //---------------------------------------------------------------------------// 00011 // 00012 00013 #include "io/MJLogger.hh" 00014 00015 //---------------------------------------------------------------------------// 00016 00017 #include "io/MaGeOutputAIDA.hh" 00018 00019 //---------------------------------------------------------------------------// 00020 00021 //---------------------------------------------------------------------------// 00022 00023 MaGeOutputAIDA::MaGeOutputAIDA() 00024 {;} 00025 00026 //---------------------------------------------------------------------------// 00027 00028 MaGeOutputAIDA::MaGeOutputAIDA(const MaGeOutputAIDA &) 00029 {;} 00030 00031 //---------------------------------------------------------------------------// 00032 00033 MaGeOutputAIDA::~MaGeOutputAIDA() 00034 {;} 00035 00036 //---------------------------------------------------------------------------// 00037 00038 //concrete AIDA/HBOOK implementation of virtual methods 00039 void MaGeOutputAIDA::OpenFile(const char* filename) 00040 { 00041 MJLog(warning) << "This does not actually open the file: do in 00042 the derived class!" << endlog; 00043 } 00044 00045 void MaGeOutputAIDA::CloseFile() 00046 { 00047 MJLog(warning) << "This does not actually close the file: do in 00048 the derived class!" << endlog; 00049 } 00050 00051