00001
00002
00003
00004
00005
00006
00007
00008
00009
00011
00012
00013 #ifndef _ALVERTEX_H_
00014 #define _ALVERTEX_H_
00015
00016 #include "QvrtBase.h"
00017
00019 class AlVertex : public QvrtBase {
00020
00021 public:
00022
00024 AlVertex();
00025
00027 AlVertex ( const AlVertex& origin);
00028
00030 ~AlVertex();
00031
00033 virtual void SetPointer(QVRT* pointer);
00034
00036 ALEPHTYPE TYPE() const {return VERTEX;}
00037
00038
00040
00042
00044
00046
00048
00050
00052
00054
00056
00058
00060
00062
00063
00064 private:
00065
00067 QVRT* qvrt;
00068
00069 };
00070
00071 #endif
00072
00073 #ifndef _ALUSRVERTEX_H_
00074 #define _ALUSRVERTEX_H_
00075
00076 #include "QvrtBase.h"
00077
00079 class AlUsrVertex : public QvrtBase {
00080
00081 public:
00082
00084 AlUsrVertex();
00085
00087 AlUsrVertex(const AlUsrVertex& origin);
00088
00090 AlUsrVertex(const AlVertex& origin);
00091
00093 ~AlUsrVertex();
00094
00096 ALEPHTYPE TYPE() const {return VERTEX;}
00097
00099 virtual void setEM(const HepSymMatrix& matrix);
00100 virtual void setCHIF(const double chi2);
00101
00102
00104
00106
00108
00110
00111
00112 private:
00113
00114 HepSymMatrix _EM;
00115 double _CHI2;
00116
00117 };
00118
00119 #endif