![]() |
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 #include "HitType.hh" 00038 00039 #ifndef EVENTHIT_TEST_HH 00040 #define EVENTHIT_TEST_HH//!<Inclusion guard. 00041 00047 class EventHit_TEST: public GenericUnitTest 00048 { 00049 public: 00050 int runUnitTests() const; 00051 protected: 00052 bool DoubleEquality(double d1, double d2, double eps) const; 00053 bool EventHit_ClassifiesCorrectly_AssertTrue() const; 00054 }; 00055 00056 #endif