![]() |
Mixed Data Coincidence Analysis Software 1.0
A program to analyze files produced by the EventMixer software.
|
00001 00013 using namespace std; 00014 #ifndef ASSERT_H 00015 #define ASSERT_H//!<Inclusion guard. 00016 #include <assert.h> 00017 #endif 00018 00019 #ifndef IOSTREAM 00020 #define IOSTREAM//!<Inclusion guard. 00021 #include <iostream> 00022 #endif 00023 00024 #ifndef LIST 00025 #define LIST//!<Inclusion guard. 00026 #include <list> 00027 #endif 00028 00029 #ifndef STRING 00030 #define STRING//!<Inclusion guard. 00031 #include <string> 00032 #endif 00033 00034 #include "FileEventParser.hh" 00035 #include "EventHit.hh" 00036 #include "GenericUnitTest.hh" 00037 00038 #ifndef FILEEVENTPARSER_TEST_HH 00039 #define FILEEVENTPARSER_TEST_HH//!<Inclusion guard. 00040 00046 class FileEventParser_TEST: public GenericUnitTest 00047 { 00048 public: 00049 int runUnitTests() const; 00050 protected: 00051 bool DoubleEquality(double d1, double d2, double eps) const; 00052 bool FileEventParser_OpensFile_AssertTrue() const; 00053 bool FileEventParser_ReturnsCorrectNumberOfHits_AssertTrue() const; 00054 bool FileEventParser_ReturnsCorrectHits_AssertTrue() const; 00055 00056 00057 }; 00058 00059 #endif