]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSclusterV2.cxx
Coverity
[u/mrichter/AliRoot.git] / ITS / AliITSclusterV2.cxx
index 1d1b43afb70906473aaf11ec0414da919a50e370..da8f2eb2a169f11acad66856c37c2066588f6e53 100644 (file)
 #include "AliITSclusterV2.h"
 
 ClassImp(AliITSclusterV2)
+//_______________________________________________________
+AliITSclusterV2::AliITSclusterV2() : AliCluster(),
+fIndex(0),
+fQ(0),
+fLayer(0),
+fNz(0),
+fNy(0),
+fChargeRatio(0),
+fType(0),
+fDeltaProb(0) {
+  //default constructor
+}
+
+//_______________________________________________________
+AliITSclusterV2::AliITSclusterV2(Int_t *lab,Float_t *hit, Int_t *info): 
+  AliCluster(0,hit,0.,0.,lab),
+fIndex(lab[3]),
+fQ(hit[4]),
+fLayer(info[2]),
+fNz(info[1]),
+fNy(info[0]),
+fChargeRatio(0),
+fType(0),
+fDeltaProb(0){
+  //standard constructor
+}