]> git.uio.no Git - u/mrichter/AliRoot.git/blame - ITS/AliITSVertexer.h
Coding conventions
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.h
CommitLineData
c5f0f3c1 1#ifndef ALIITSVERTEXER_H
2#define ALIITSVERTEXER_H
3
2257f27e 4#include<AliVertexer.h>
c5f0f3c1 5
6///////////////////////////////////////////////////////////////////
7// //
2257f27e 8// Base class for primary vertex reconstruction for ITS //
c5f0f3c1 9// //
10///////////////////////////////////////////////////////////////////
11
41b19549 12class TString;
2257f27e 13class TClonesArray;
c5f0f3c1 14
15
2257f27e 16class AliITSVertexer : public AliVertexer {
c5f0f3c1 17
18 public:
19 // default constructor
20 AliITSVertexer();
21 // standard constructor
88cb7938 22 AliITSVertexer(TString filename);
7d62fb64 23 virtual ~AliITSVertexer(){;}
c5f0f3c1 24 virtual void WriteCurrentVertex();
2257f27e 25
c5f0f3c1 26
27
28 protected:
41b19549 29 // copy constructor (NO copy allowed: the constructor is protected
30 // to avoid misuse)
31 AliITSVertexer(const AliITSVertexer& vtxr);
32 // assignment operator (NO assignment allowed)
33 AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
34
531d6cdc 35 ClassDef(AliITSVertexer,3);
c5f0f3c1 36};
37
38#endif