#include "AtlfastAlgs/TestTrackViewer.h"
#include "AtlfastAlgs/GlobalEventData.h"
#include "AtlfastAlgs/ITrackViewer.h"
#include "AtlfastAlgs/AtlfTrackViewer.h"
#include "AtlfastAlgs/ITrackParameterView.h"
#include "AtlfastAlgs/AtlfTrackParameterView.h"
#include "AtlfastEvent/ITrackParameters.h"
#include "AtlfastEvent/CollectionDefs.h"
#include <cmath>
#include <cassert>
#include <stdexcept>
#include <sstream>
#include "AtlfastEvent/Phi.h"
#include "AtlfastUtils/HeaderPrinter.h"
#include <algorithm>
#include "AtlfastUtils/FunctionObjects.h"
#include "GaudiKernel/DataSvc.h"
Include dependency graph for TestTrackViewer.cxx:
Go to the source code of this file.
Namespaces | |
namespace | Atlfast |
Classes | |
class | atl_test_err |
Defines | |
#define | ATL_ASSERT(X) |
Functions | |
void | throw_atl_test_err (const char *file, int line, const char *what) |
#define ATL_ASSERT | ( | X | ) |
Value:
do { \ if (!(X)) { \ throw_atl_test_err (__FILE__, __LINE__, #X); \ } \ } while (0)
Definition at line 66 of file TestTrackViewer.cxx.
void throw_atl_test_err | ( | const char * | file, | |
int | line, | |||
const char * | what | |||
) |
Definition at line 61 of file TestTrackViewer.cxx.
00062 { 00063 throw (atl_test_err (file, line, what)); 00064 }