![]() |
Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
|
00001 00011 using namespace std; 00012 00013 #ifndef EXCEPTION 00014 #define EXCEPTION 00015 #include <exception> 00016 #endif 00017 00018 #ifndef STRING 00019 #define STRING //!<Inclusion guard 00020 #include <string> 00021 #endif 00022 00023 #ifndef COMMANDLINEEXCEPTION_H 00024 #define COMMANDLINEEXCEPTION_H //!<Inclusion guard. 00025 00028 class CommandLineException : public exception 00029 { 00030 public: 00031 CommandLineException( 00032 string m="exception!" 00033 ); 00034 ~CommandLineException() throw(); 00035 const char* what() const throw(); 00037 00038 private: 00039 string msg; 00040 }; 00041 #endif