]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSVertexer.h
Fix of parsing bug related to the reading of the calib header. Added consistency...
[u/mrichter/AliRoot.git] / ITS / AliITSVertexer.h
index 01ac201677360e3fce04b20e821b03a92a14479c..dea1b0445b67dcc2062d98da1ae0d992eff1cbac 100644 (file)
@@ -20,10 +20,11 @@ class AliITSVertexer : public AliVertexer {
     AliITSVertexer();   
     // standard constructor     
     AliITSVertexer(TString filename); 
-    virtual ~AliITSVertexer(){;}
+    virtual ~AliITSVertexer();
     virtual void FindMultiplicity(Int_t evnumber);
     virtual void WriteCurrentVertex();
+    const Float_t GetPipeRadius()const {return fgkPipeRadius;}
+    virtual void SetLaddersOnLayer2(Int_t ladwid=4);
 
  
  protected:
@@ -33,7 +34,12 @@ class AliITSVertexer : public AliVertexer {
     // assignment operator (NO assignment allowed)
     AliITSVertexer& operator=(const AliITSVertexer& /* vtxr */);
 
-  ClassDef(AliITSVertexer,3);
+    static const Float_t fgkPipeRadius;  // beam pipe radius (cm)
+    UShort_t *fLadders; // array with layer1-layer2 ladders correspondances  
+    Int_t fLadOnLay2;   // (2*fLadOnLay2+1)=number of layer2 ladders 
+                      // associated to a layer1 ladder
+
+  ClassDef(AliITSVertexer,4);
 };
 
 #endif