#ifndef ALIITSVERTEXER_H #define ALIITSVERTEXER_H #include /////////////////////////////////////////////////////////////////// // // // Base class for primary vertex reconstruction for ITS // // // /////////////////////////////////////////////////////////////////// class TString; class TClonesArray; class AliITSVertexer : public AliVertexer { public: // default constructor AliITSVertexer(); // standard constructor AliITSVertexer(TString filename); virtual ~AliITSVertexer(){;} virtual void FindMultiplicity(Int_t evnumber); virtual void WriteCurrentVertex(); protected: // copy constructor (NO copy allowed: the constructor is protected // to avoid misuse) AliITSVertexer(const AliITSVertexer& vtxr); // assignment operator (NO assignment allowed) AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */); ClassDef(AliITSVertexer,3); }; #endif