]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSv11GeomCable.h
Fix of parsing bug related to the reading of the calib header. Added consistency...
[u/mrichter/AliRoot.git] / ITS / AliITSv11GeomCable.h
index 8c1cb5556ababe7b9ef434f93a066765985c4a16..a805b3bff579ef6311f9910f1bc288aad600649f 100644 (file)
@@ -21,8 +21,7 @@ class TGeoNode;
 class AliITSv11GeomCable : public TNamed {
 
  public:
-  AliITSv11GeomCable()
-    { fInitialNode = 0; fPointArray.SetOwner(); fDebug=0; };
+  AliITSv11GeomCable();
   AliITSv11GeomCable(const char* name);
   AliITSv11GeomCable(const AliITSv11GeomCable &source);
   AliITSv11GeomCable& operator=(const AliITSv11GeomCable &source);
@@ -68,19 +67,19 @@ class AliITSv11GeomCable : public TNamed {
 };
 
 inline Int_t AliITSv11GeomCable::GetNCheckPoints() const{
-  return fVolumeArray.GetEntriesFast(); };
+  return fVolumeArray.GetEntriesFast(); }
 
 inline void AliITSv11GeomCable::ResetCheckDaughter() {
-  for (Int_t i=0; i<fgkCableMaxNodeLevel; i++) fNodeInd[i] = -1; };
+  for (Int_t i=0; i<fgkCableMaxNodeLevel; i++) fNodeInd[i] = -1; }
 
 inline void AliITSv11GeomCable::CopyFrom(Double_t *c, const Double_t *o)
-const { *(c++)=*(o++); *(c++)=*(o++); *c=*o; };
+const { *(c++)=*(o++); *(c++)=*(o++); *c=*o; }
 
 inline Double_t AliITSv11GeomCable::ScalProd(const Double_t *a,
                                                const Double_t *b) const {
   Double_t s = *(a++)*(*(b++)); s+=*(a++)*(*(b++)); s+=*a*(*b);
   return s;
-};
+}