G4INCLLogger.cc

Go to the documentation of this file.
00001 //
00002 // ********************************************************************
00003 // * License and Disclaimer                                           *
00004 // *                                                                  *
00005 // * The  Geant4 software  is  copyright of the Copyright Holders  of *
00006 // * the Geant4 Collaboration.  It is provided  under  the terms  and *
00007 // * conditions of the Geant4 Software License,  included in the file *
00008 // * LICENSE and available at  http://cern.ch/geant4/license .  These *
00009 // * include a list of copyright holders.                             *
00010 // *                                                                  *
00011 // * Neither the authors of this software system, nor their employing *
00012 // * institutes,nor the agencies providing financial support for this *
00013 // * work  make  any representation or  warranty, express or implied, *
00014 // * regarding  this  software system or assume any liability for its *
00015 // * use.  Please see the license in the file  LICENSE  and URL above *
00016 // * for the full disclaimer and the limitation of liability.         *
00017 // *                                                                  *
00018 // * This  code  implementation is the result of  the  scientific and *
00019 // * technical work of the GEANT4 collaboration.                      *
00020 // * By using,  copying,  modifying or  distributing the software (or *
00021 // * any work based  on the software)  you  agree  to acknowledge its *
00022 // * use  in  resulting  scientific  publications,  and indicate your *
00023 // * acceptance of all terms of the Geant4 Software license.          *
00024 // ********************************************************************
00025 //
00026 // INCL++ intra-nuclear cascade model
00027 // Pekka Kaitaniemi, CEA and Helsinki Institute of Physics
00028 // Davide Mancusi, CEA
00029 // Alain Boudard, CEA
00030 // Sylvie Leray, CEA
00031 // Joseph Cugnon, University of Liege
00032 //
00033 #define INCLXX_IN_GEANT4_MODE 1
00034 
00035 #include "globals.hh"
00036 
00037 #include "G4INCLLogger.hh"
00038 
00039 namespace G4INCL {
00040 #ifdef INCL_DEBUG_LOG
00041   std::string typeToString(const MessageType t) {
00042     if(t == ErrorMsg)
00043       return std::string("Error");
00044     else if(t == FatalMsg)
00045       return std::string ("Fatal");
00046     else if(t == WarningMsg)
00047       return std::string("Warning");
00048     else if(t == DebugMsg)
00049       return std::string("Debug");
00050     else if(t == InfoMsg)
00051       return std::string("");
00052     else if(t == DataBlockMsg)
00053       return std::string("DataBlock");
00054     else
00055       return std::string("Unknown");
00056   }
00057 
00058   void LoggerSlave::logMessage(const MessageType type, const std::string &fileName, const G4int lineNumber, std::string const &s) const {
00059     if(type!=InfoMsg) {
00060       (*logStream) << typeToString(type) << " [" <<
00061         fileName.substr(fileName.find_last_of("/")+1) <<
00062         ":" << lineNumber << "] ";
00063     }
00064     (*logStream) << s;
00065   }
00066   
00067   void LoggerSlave::logDataBlock(const std::string &block, const std::string &fileName, const G4int lineNumber) const {
00068     (*logStream) << typeToString(DataBlockMsg) << " [" <<
00069       fileName.substr(fileName.find_last_of("/")+1) <<
00070       ":" << lineNumber << "] " << std::endl
00071       << "BEGINDATA"
00072       << block
00073       << "ENDDATA" << std::endl;
00074   }
00075 
00076 #endif
00077 
00078   LoggerSlave * Logger::theLoggerSlave = NULL;
00079 }

Generated on Mon May 27 17:48:35 2013 for Geant4 by  doxygen 1.4.7