IAP GITLAB

Skip to content
Snippets Groups Projects
Commit ce8eeec5 authored by Maximilian Reininghaus's avatar Maximilian Reininghaus :vulcan:
Browse files

Merge gitlab.ikp.kit.edu:AirShowerPhysics/corsika

parents 3c2ca22a 70a70e39
No related branches found
No related tags found
No related merge requests found
Showing
with 310 additions and 195 deletions
cmake_minimum_required (VERSION 3.4.3) cmake_minimum_required (VERSION 3.4.3)
project (corsika VERSION 8.0.0 DESCRIPTION "CORSIKA C++ PROJECT " LANGUAGES CXX) project (corsika VERSION 8.0.0 DESCRIPTION "CORSIKA C++ project" LANGUAGES CXX)
# ignore many irrelevant Up-to-date messages during install # ignore many irrelevant Up-to-date messages during install
set (CMAKE_INSTALL_MESSAGE LAZY) set (CMAKE_INSTALL_MESSAGE LAZY)
......
PROJECT_NAME = CORSIKA8 PROJECT_NAME = CORSIKA
PROJECT_NUMBER = 8.0.0
OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/ OUTPUT_DIRECTORY = @CMAKE_CURRENT_BINARY_DIR@/
INPUT = @CMAKE_CURRENT_SOURCE_DIR@/../.. INPUT = @CMAKE_CURRENT_SOURCE_DIR@/../..
EXCLUDE_PATTERN = "*/ThirdParty/*/*"
GENERATE_HTML = YES GENERATE_HTML = YES
GENERATE_LATEX = NO GENERATE_LATEX = NO
FILE_PATTERNS = *.cc *.h FILE_PATTERNS = *.cc *.cpp *.cxx *.h *.dox
RECURSIVE = YES RECURSIVE = YES
SOURCE_BROWSER = YES SOURCE_BROWSER = YES
......
...@@ -2,6 +2,7 @@ ...@@ -2,6 +2,7 @@
#include <string> #include <string>
#include <iostream> #include <iostream>
#include <fstream>
#include <boost/format.hpp> #include <boost/format.hpp>
...@@ -13,10 +14,10 @@ main() ...@@ -13,10 +14,10 @@ main()
{ {
cout << "writing to \"another.log\"" << endl; cout << "writing to \"another.log\"" << endl;
ofstream logfile("another.log"); ofstream logfile("another.log");
typedef Sink<ofstream, StdBuffer> SinkFile; logger::sink::SinkStream unbuffered_sink(logfile);
SinkFile sink(logfile, StdBuffer(10000)); logger::sink::BufferedSinkStream sink(logfile, logger::sink::StdBuffer(10000));
logger<SinkFile, messageconst> info("\033[32m", "info", sink); logger::Logger<logger::MessageOn, logger::sink::BufferedSinkStream> info("\033[32m", "info", sink);
logger<SinkFile, messageconst> err("\033[31m", "error", sink); logger::Logger<logger::MessageOn, logger::sink::BufferedSinkStream> err("\033[31m", "error", sink);
//logger<ostream,messageconst,StdBuffer> info(std::cout, StdBuffer(10000)); //logger<ostream,messageconst,StdBuffer> info(std::cout, StdBuffer(10000));
/* /*
...@@ -26,14 +27,14 @@ main() ...@@ -26,14 +27,14 @@ main()
*/ */
for (int i=0; i<100000; ++i) { for (int i=0; i<100000; ++i) {
LOG(info, "irgendwas"," ", string("and more")," ", boost::format("error: %i message: %s. done."), i, "stupido"); LOG(info, "irgendwas"," ", string("and more")," ", boost::format("error: %i message: %s. done."), i, "stupido");
LOG(err, "Fehler"); LOG(err, "Fehler");
} }
} }
{ {
NoSink off; logger::sink::NoSink off;
logger<NoSink, MessageOff> info("", "", off); logger::Logger<logger::MessageOff> info("", "", off);
for (int i=0; i<100000; ++i) { for (int i=0; i<100000; ++i) {
LOG(info, "irgendwas", string("and more"), boost::format("error: %i message: %s. done."), i, "stupido", "a-number:", 8.99, "ENDE" ); LOG(info, "irgendwas", string("and more"), boost::format("error: %i message: %s. done."), i, "stupido", "a-number:", 8.99, "ENDE" );
......
...@@ -8,7 +8,7 @@ set_target_properties (CORSIKAgeometry PROPERTIES VERSION ${PROJECT_VERSION}) ...@@ -8,7 +8,7 @@ set_target_properties (CORSIKAgeometry PROPERTIES VERSION ${PROJECT_VERSION})
set_target_properties (CORSIKAgeometry PROPERTIES SOVERSION 1) set_target_properties (CORSIKAgeometry PROPERTIES SOVERSION 1)
set_target_properties (CORSIKAgeometry PROPERTIES PUBLIC_HEADER "${GEOMETRY_HEADERS}") set_target_properties (CORSIKAgeometry PROPERTIES PUBLIC_HEADER "${GEOMETRY_HEADERS}")
# target dependencies on other libraries (also header only) # target dependencies on other libraries (also header only)
target_link_libraries (CORSIKAgeometry CORSIKAunits) target_link_libraries (CORSIKAgeometry CORSIKAunits)
...@@ -17,7 +17,7 @@ target_include_directories (CORSIKAgeometry INTERFACE ${EIGEN3_INCLUDE_DIR}) ...@@ -17,7 +17,7 @@ target_include_directories (CORSIKAgeometry INTERFACE ${EIGEN3_INCLUDE_DIR})
target_include_directories (CORSIKAgeometry INTERFACE $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/Framework> target_include_directories (CORSIKAgeometry INTERFACE $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/Framework>
$<INSTALL_INTERFACE:include/Framework> $<INSTALL_INTERFACE:include/Framework>
) )
install (TARGETS CORSIKAgeometry install (TARGETS CORSIKAgeometry
LIBRARY DESTINATION lib LIBRARY DESTINATION lib
ARCHIVE DESTINATION lib ARCHIVE DESTINATION lib
......
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <ThirdParty/catch2/catch.hpp> #include <catch2/catch.hpp>
#include <Units/PhysicalUnits.h> #include <Units/PhysicalUnits.h>
using namespace phys::units; using namespace phys::units;
using namespace phys::units::io;
using namespace phys::units::literals;
TEST_CASE( "PhysicalUnits", "[Units]" ) TEST_CASE( "PhysicalUnits", "[Units]" )
{ {
......
#ifndef _include_BufferedSink_h_
#define _include_BufferedSink_h_
namespace logger {
namespace sink {
/**
Output buffer template. NoBuffer does nothingk.
*/
/*
struct NoBuffer {
inline bool Test(const std::string&) const { return false; }
inline std::string GetString() const { return std::string(""); }
inline void Clear() {}
inline void Add(const std::string&) {}
};
*/
/**
Output buffer template. StdBuffer records fSize characters in
local memeory before passing it on to further output stages.
*/
struct StdBuffer {
StdBuffer(const int size) : fSize(size) {}
inline bool Test(const std::string& s) { return int(fBuffer.tellp())+s.length() < fSize; }
inline std::string GetString() const { return fBuffer.str(); }
inline void Clear() { fBuffer.str(""); }
inline void Add(const std::string& s) { fBuffer << s; }
private:
int fSize;
std::ostringstream fBuffer;
};
/**
Definition of Sink for log output.
*/
template<typename TStream, typename TBuffer=StdBuffer>
class BufferedSink {
public:
BufferedSink(TStream& out, TBuffer buffer = {} ) : fOutput(out), fBuffer(std::move(buffer)) {}
void operator<<(const std::string& msg) {
if (!fBuffer.Test(msg)) {
fOutput << fBuffer.GetString();
fBuffer.Clear();
}
if (!fBuffer.Test(msg))
fOutput << msg;
else
fBuffer.Add(msg);
}
void Close() { fOutput << fBuffer.GetString(); }
private:
TStream& fOutput;
TBuffer fBuffer;
};
typedef BufferedSink<std::ostream, StdBuffer> BufferedSinkStream;
}// end namespace
} // end namespace
#endif
...@@ -8,6 +8,6 @@ target_include_directories (CORSIKAlogging INTERFACE $<BUILD_INTERFACE:${PROJECT ...@@ -8,6 +8,6 @@ target_include_directories (CORSIKAlogging INTERFACE $<BUILD_INTERFACE:${PROJECT
$<INSTALL_INTERFACE:include/Framework> $<INSTALL_INTERFACE:include/Framework>
) )
install (FILES Logger.h install (FILES Logger.h Sink.h MessageOn.h MessageOff.h NoSink.h Sink.h BufferedSink.h
DESTINATION include/Logging) DESTINATION include/Logging)
#ifndef _include_logger_h_ #ifndef _include_logger_h_
#define _include_logger_h_ #define _include_logger_h_
#include <iosfwd>
#include <string> #include <string>
#include <sstream> #include <sstream>
#include <iostream>
#include <typeinfo> #include <typeinfo>
#include <fstream>
#include <boost/format.hpp> #include <boost/format.hpp>
using namespace std;
using namespace boost;
class MessageOff {
protected:
template<typename First, typename ... Strings> std::string message(const First& arg, const Strings&... rest) {
return "";
}
};
class messageconst {
protected:
std::string message() { return "\n"; }
template<typename First, typename ... Strings> std::string message(const First& arg, const Strings&... rest) {
std::ostringstream ss;
ss << arg << message(rest...);
return ss.str();
}
template<typename ... Strings> std::string message(const int& arg, const Strings&... rest) {
return std::to_string(arg) + message(rest...);
}
template<typename ... Strings> std::string message(const double& arg, const Strings&... rest) {
return std::to_string(arg) + message(rest...);
}
template<typename ... Strings> std::string message(char const * arg, const Strings&... rest) {
return std::string(arg) + message(rest...);
}
template<typename ... Strings> std::string message(const std::string& arg, const Strings&... rest) {
return arg + message(rest...);
}
// ----------------------
// boost format
template<typename ... Strings> std::string message(const boost::format& fmt, const Strings&... rest) {
boost::format FMT(fmt);
return bformat(FMT, rest...);
}
template<typename Arg, typename ... Strings> std::string bformat(boost::format& fmt, const Arg& arg, const Strings&... rest) {
fmt % arg;
return bformat(fmt, rest...);
}
std::string bformat(boost::format& fmt) { return fmt.str() + "\n"; }
};
struct NoBuffer {
inline bool Test(const std::string&) const { return false; }
inline std::string GetString() const { return std::string(""); }
inline void Clear() {}
inline void Add(const std::string&) {}
};
struct StdBuffer {
StdBuffer(const int size) : fSize(size) {}
inline bool Test(const std::string& s) { return int(fBuffer.tellp())+s.length() < fSize; }
inline std::string GetString() const { return fBuffer.str(); }
inline void Clear() { fBuffer.str(""); }
inline void Add(const std::string& s) { fBuffer << s; }
private:
int fSize;
std::ostringstream fBuffer;
};
template<typename TStream, typename TBuffer=StdBuffer>
class Sink {
public:
Sink(TStream& out, TBuffer buffer = {} ) : fOutput(out), fBuffer(std::move(buffer)) {}
void operator<<(const std::string& msg) {
if (!fBuffer.Test(msg)) {
fOutput << fBuffer.GetString();
fBuffer.Clear();
}
if (!fBuffer.Test(msg))
fOutput << msg;
else
fBuffer.Add(msg);
}
void Close() { fOutput << fBuffer.GetString(); }
private:
TStream& fOutput;
TBuffer fBuffer;
};
#include <Logging/MessageOn.h>
#include <Logging/MessageOff.h>
#include <Logging/Sink.h>
#include <Logging/NoSink.h>
#include <Logging/BufferedSink.h>
struct NoSink { inline void operator<<(const std::string&) {} inline void Close() {} }; using namespace std;
using namespace boost;
template<typename TSink=NoSink,typename M=messageconst> /**
class logger : private M { Everything around logfile generation and text output.
*/
using M::message;
public: namespace logger {
// logger() : fName("") {}
logger(const std::string color, const std::string name, TSink& sink) : fSink(sink), fName(color+"["+name+"]\033[39m ") {}
~logger() { fSink.Close(); }
// logger(const logger&) = delete; /**
Defines one stream to accept messages, and to wrote those into
template<typename ... Strings> TSink. The helper class MessageOn will convert input at
void log(const Strings&... inputs) { compile-time into message strings. The helper class MessageOff,
fSink << M::message(inputs...); will just do nothing and will be optimized away at compile time.
} */
template<typename MSG=MessageOn, typename TSink=sink::NoSink>
const std::string& GetName() const { return fName; } class Logger : private MSG {
private: using MSG::Message;
TSink& fSink;
std::string fName; public:
}; // Logger() : fName("") {}
Logger(const std::string color, const std::string name, TSink& sink) : fSink(sink), fName(color+"["+name+"]\033[39m ") {}
~Logger() { fSink.Close(); }
// Logger(const Logger&) = delete;
#define LOG(__LOGGER,...) \
__LOGGER.log(__LOGGER.GetName(), __FILE__,":", __LINE__, " (", __func__, ") -> ", ##__VA_ARGS__); /**
Function to add string-concatenation of all inputs to output
sink.
*/
template<typename ... Strings>
void Log(const Strings&... inputs) {
fSink << MSG::Message(inputs...);
}
const std::string& GetName() const { return fName; }
private:
TSink& fSink;
std::string fName;
};
} // end namesapce
#define LOG(__LOGGER,...) \
__LOGGER.Log(__LOGGER.GetName(), __FILE__,":", __LINE__, " (", __func__, ") -> ", ##__VA_ARGS__);
#endif #endif
#ifndef _include_logging_h_
#define _include_logging_h_
#include <logger.h>
#include <map>
#include <string>
#include <any>
class Logging {
Logging() {}
public:
static Logging& GetInstance() { static Logging fgLog; return fgLog; }
template<typename TLogger>
void AddLogger(const std::string& name, const TLogger& logger) { fLoggers[name] = logger; }
auto& GetLogger(const std::string& name) { return fLoggers[name]; }
private:
std::map<std::string, std::any> fLoggers;
};
#endif
#ifndef _include_MessageOff_h_
#define _include_MessageOff_h_
namespace logger {
/**
Helper class to ignore all arguments to MessagesOn::Message and
always return empty string "".
*/
class MessageOff {
protected:
template<typename First, typename ... Strings> std::string Message(const First& arg, const Strings&... rest) {
return "";
}
};
} // end namespace
#endif
#ifndef _include_MessageOn_h_
#define _include_MessageOn_h_
namespace logger {
/**
Helper class to convert all input arguments of MessageOn::Message
into string-concatenated version and return this as string.
*/
class MessageOn {
protected:
std::string Message() { return "\n"; }
template<typename First, typename ... Strings> std::string Message(const First& arg, const Strings&... rest) {
std::ostringstream ss;
ss << arg << Message(rest...);
return ss.str();
}
template<typename ... Strings> std::string Message(const int& arg, const Strings&... rest) {
return std::to_string(arg) + Message(rest...);
}
template<typename ... Strings> std::string Message(const double& arg, const Strings&... rest) {
return std::to_string(arg) + Message(rest...);
}
template<typename ... Strings> std::string Message(char const * arg, const Strings&... rest) {
return std::string(arg) + Message(rest...);
}
template<typename ... Strings> std::string Message(const std::string& arg, const Strings&... rest) {
return arg + Message(rest...);
}
// ----------------------
// boost format
template<typename ... Strings> std::string Message(const boost::format& fmt, const Strings&... rest) {
boost::format FMT(fmt);
return bformat(FMT, rest...);
}
template<typename Arg, typename ... Strings> std::string bformat(boost::format& fmt, const Arg& arg, const Strings&... rest) {
fmt % arg;
return bformat(fmt, rest...);
}
std::string bformat(boost::format& fmt) { return fmt.str() + "\n"; }
};
}// end namesapce
#endif
#ifndef _include_NoSink_h_
#define _include_NoSink_h_
namespace logger {
namespace sink {
struct NoSink {
inline void operator<<(const std::string&) {}
inline void Close() {}
};
}// end namespace
} // end namespace
#endif
#ifndef _include_Sink_h_
#define _include_Sink_h_
namespace logger {
/**
a sink for the logger must implement the two functions
operator<<(const std::string&)
and
Close()
See example: NoSink
*/
namespace sink {
/**
Definition of Sink for log output.
*/
template<typename TStream>
class Sink {
public:
Sink(TStream& out) : fOutput(out) {}
void operator<<(const std::string& msg) {
fOutput << msg;
}
void Close() {}
private:
TStream& fOutput;
};
typedef Sink<std::ostream> SinkStream;
}// end namespace
} // end namespace
#endif
...@@ -5,7 +5,6 @@ target_include_directories (CORSIKAunits ...@@ -5,7 +5,6 @@ target_include_directories (CORSIKAunits
INTERFACE INTERFACE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/Framework> $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/Framework>
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/ThirdParty> $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/ThirdParty>
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}>
$<INSTALL_INTERFACE:include> $<INSTALL_INTERFACE:include>
) )
......
#ifndef _include_PhysicalUnits_h_ #ifndef _include_PhysicalUnits_h_
#define _include_PhysicalUnits_h_ #define _include_PhysicalUnits_h_
#include <ThirdParty/phys/units/quantity.hpp> #include <phys/units/quantity.hpp>
#include <ThirdParty/phys/units/io.hpp> #include <phys/units/io.hpp>
#include <ThirdParty/phys/units/physical_constants.hpp> #include <phys/units/physical_constants.hpp>
/** /**
/file PhysicalUnits @file PhysicalUnits
Define _XeV literals, alowing 10_GeV in the code. Define _XeV literals, alowing 10_GeV in the code.
*/ */
using namespace phys::units::io;
using namespace phys::units::literals;
namespace phys { namespace phys {
namespace units { namespace units {
namespace literals { namespace literals {
......
#define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file #define CATCH_CONFIG_MAIN // This tells Catch to provide a main() - only do this in one cpp file
#include <ThirdParty/catch2/catch.hpp> #include <catch2/catch.hpp>
#include <Units/PhysicalUnits.h> #include <Units/PhysicalUnits.h>
using namespace phys::units; using namespace phys::units;
using namespace phys::units::io;
using namespace phys::units::literals;
TEST_CASE( "PhysicalUnits", "[Units]" ) { TEST_CASE( "PhysicalUnits", "[Units]" ) {
REQUIRE( 1_m/1_m == 1 ); REQUIRE( 1_m/1_m == 1 );
......
#include _Physics_NullModel_NullModel_h_ #include <Processes/NullModel/NullModel.h>
#ifndef _Physics_NullModel_NullModel_h_ #ifndef _Physics_NullModel_NullModel_h_
#define _Physics_NullModel_NullModel_h_ #define _Physics_NullModel_NullModel_h_
namespace physics { namespace processes {
namespace processes { class NullModel {
class NullModel { public:
NullModel();
public: ~NullModel();
NullModel();
~NullModel();
void init();
void run();
double GetStepLength();
};
} void init();
void run();
double GetStepLength();
};
} }
#endif #endif
......
add_library (CORSIKAthirdparty INTERFACE) add_library (CORSIKAthirdparty INTERFACE)
target_include_directories (CORSIKAthirdparty target_include_directories (CORSIKAthirdparty SYSTEM
INTERFACE INTERFACE
$<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/> $<BUILD_INTERFACE:${PROJECT_SOURCE_DIR}/ThirdParty>
$<INSTALL_INTERFACE:include/> $<INSTALL_INTERFACE:include/ThirdParty>
) )
install (DIRECTORY phys DESTINATION include/ThirdParty/) install (DIRECTORY phys DESTINATION include/ThirdParty/)
......
/**
@page ThirdParty
@tableofcontents
In the directory ThirdParty we provide simple dependencies. This
minimizes the need to install additional software for the user. Note
the individual copyrights and licences here!
@section PhysUnits
The PhysUnits library is an external dependency included here just for
convenience:
Original source code from: https://github.com/martinmoene/PhysUnits-CT-Cpp11#references
Licence: BSL-1.0 (https://github.com/martinmoene/PhysUnits-CT-Cpp11/blob/master/LICENSE_1_0.txt)
References: https://github.com/martinmoene/PhysUnits-CT-Cpp11#references
@section catch2
The catch2 unit testing library is from: https://github.com/catchorg/Catch2
Licence: BSL-1.0 (https://github.com/martinmoene/PhysUnits-CT-Cpp11/blob/master/LICENSE_1_0.txt)
References: https://github.com/catchorg/Catch2
*/
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment