00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ATLFANA_ITRACKPARAMETERVIEW_H
00013 #define ATLFANA_ITRACKPARAMETERVIEW_H
00014 #include <cmath>
00015 #include <vector>
00016
00017 #include "GaudiKernel/MsgStream.h"
00018
00019 #include "AtlfastCode/TrackParameters.h"
00020 #include "CLHEP/Matrix/Matrix.h"
00021
00022 namespace AtlfAna{
00023
00028 class ITrackParameterView{
00029 public:
00030 virtual TrackParameters trackParameters() const = 0;
00031 virtual HepMatrix covMatrix() const = 0;
00032 virtual bool operator!() const = 0;
00033 };
00034 }
00035 #endif
00036