]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - ITS/AliITSRecPoint.cxx
Added check for wrong records in the config file (R. Shaoyan)
[u/mrichter/AliRoot.git] / ITS / AliITSRecPoint.cxx
index 462353f09285085234ab3c45183ea304da3cf91f..9c33935303efbc344ea468315281de31fbc8c8e8 100644 (file)
 //  "trackingV2".
 ///////////////////////////////////////////////////////////////////////////////
 
-
+#include <TGeoMatrix.h>
 #include "AliITSRecPoint.h"
-#include "AliITSgeom.h"
-ClassImp(AliITSRecPoint)
+#include "AliAlignObj.h"
 
-//_____________________________________________________________
-AliITSRecPoint::AliITSRecPoint(): AliCluster() {
-    // default creator
-    fXloc=fZloc=fdEdX=0.;
-    fQ=0; fLayer=0; fNz=fNy=1; fType=0; fDeltaProb=0;fChargeRatio=0;
-    fGeom=0;
-}
+ClassImp(AliITSRecPoint)
 
 //_____________________________________________________________
-AliITSRecPoint::AliITSRecPoint(AliITSgeom* geom): AliCluster() {
-    // default creator
-    fXloc=fZloc=fdEdX=0.;
-    fQ=0; fLayer=0; fNz=fNy=1; fType=0; fDeltaProb=0;fChargeRatio=0;
-    fGeom=geom;
+AliITSRecPoint::AliITSRecPoint(): AliCluster(),
+fXloc(0),
+fZloc(0),
+fdEdX(0),
+fIndex(0),
+fQ(0),
+fLayer(0),
+fNz(0),
+fNy(0),
+fChargeRatio(0),
+fType(0),
+fDeltaProb(0),
+fDriftTime(0.)
+{
+    // default constructor
 }
 
 //________________________________________________________________________
-AliITSRecPoint::AliITSRecPoint(Int_t module,AliITSgeom* geom,Int_t *lab,Float_t *hit, Int_t *info):AliCluster(lab,hit){
+AliITSRecPoint::AliITSRecPoint(Int_t *lab,Float_t *hit, Int_t *info, Bool_t local):
+AliCluster(AliGeomManager::LayerToVolUID((info[2]+AliGeomManager::kSPD1),lab[3]&0x3FF),hit,0,0,lab),
+fXloc(0),
+fZloc(0),
+fdEdX(0),
+fIndex(lab[3]),
+fQ(hit[4]),
+fLayer(info[2]),
+fNz(info[1]),
+fNy(info[0]),
+fChargeRatio(0),
+fType(0),
+fDeltaProb(0),
+fDriftTime(0.)
+{
   //standard constructor used in AliITSClusterFinderV2
-  fIndex=lab[3];
-  fQ=hit[4];
-  fNy    = info[0];
-  fNz    = info[1];
-  fLayer = info[2];
-  fChargeRatio = 0;
-  fType=0;
-  fDeltaProb=0.;
-  
-  fGeom = geom;
-  fGeom->TrackingV2ToDetL(module,fY,fZ,fXloc,fZloc);
-  if(module<fGeom->GetStartSDD()) fdEdX=0.;
-  if(module>=fGeom->GetStartSDD() && module<fGeom->GetStartSSD()){
-    fdEdX=fQ*1e-6;
+
+  if (!local) { // Cluster V2
+    Double_t txyz[3] = {GetX(), GetY(), GetZ()};
+    Double_t lxyz[3] = {0, 0, 0};
+    GetTracking2LocalMatrix()->LocalToMaster(txyz,lxyz);
+    fXloc = lxyz[0]; fZloc = lxyz[2];
+  }
+  else {
+    switch (fLayer) {
+    case 0:
+    case 1:
+      fdEdX = 0;
+      break;
+    case 2:
+    case 3:
+      fdEdX=fQ*1e-6;
+      break;
+    case 4:
+      fdEdX=fQ*2.16;
+      SetSigmaYZ(hit[5]);
+    case 5:
+      fdEdX=fQ*2.16;
+      hit[5]=-hit[5];
+      SetSigmaYZ(hit[5]);
+      break;
+    default:
+      AliError(Form("Wrong ITS layer %d (0 -> 5)",fLayer));
+      break;
+    }
+    fXloc = hit[0];
+    fZloc = hit[1];
+    Double_t lxyz[3] = {fXloc, 0, fZloc};
+    Double_t txyz[3] = {0, 0, 0};
+    GetTracking2LocalMatrix()->MasterToLocal(lxyz,txyz);
+
+    SetX(0.); SetY(txyz[1]); SetZ(txyz[2]);
+
   }
-  if(module>=fGeom->GetStartSSD()) fdEdX=fQ*2.16;
-  
-  
+
 }
+
 //_______________________________________________________________________
-AliITSRecPoint::AliITSRecPoint(const AliITSRecPoint& pt):AliCluster(pt){
+AliITSRecPoint::AliITSRecPoint(const AliITSRecPoint& pt):AliCluster(pt),
+fXloc(pt.fXloc),
+fZloc(pt.fZloc),
+fdEdX(pt.fdEdX),
+fIndex(pt.fIndex),
+fQ(pt.fQ),
+fLayer(pt.fLayer),
+fNz(pt.fNz),
+fNy(pt.fNy),
+fChargeRatio(pt.fChargeRatio),
+fType(pt.fType),
+fDeltaProb(pt.fDeltaProb),
+fDriftTime(pt.fDriftTime)
+{
   //Copy constructor
-  fXloc = pt.fXloc;
-  fZloc = pt.fZloc;
-  fdEdX = pt.fdEdX;
-  fIndex= pt.fIndex;
-  fQ = pt.fQ;
-  fNy = pt.fNy;
-  fNz = pt.fNz;
-  fLayer = pt.fLayer;
-  fChargeRatio = pt.fChargeRatio;
-  fType = pt.fType;
-  fDeltaProb = pt.fDeltaProb;
-  fGeom = pt.fGeom;
 
 }
 
 //______________________________________________________________________
-AliITSRecPoint& AliITSRecPoint::operator=(const AliITSRecPoint& /* source */){
+AliITSRecPoint& AliITSRecPoint::operator=(const AliITSRecPoint& source){
   // Assignment operator
-  // Assignment is not allowed. The method is protected to avoid misuse.
-  Fatal("= operator","Assignment operator not allowed\n");
+
+  this->~AliITSRecPoint();
+  new(this) AliITSRecPoint(source);
   return *this;
-}
 
-//________________________________________________________________________
-AliITSRecPoint::AliITSRecPoint(Int_t *lab,Float_t *hit, Int_t *info):AliCluster(lab,hit){
-  //standard constructor used in AliITSClusterFinderV2
-  fXloc=fZloc=fdEdX=0.;
-  fIndex=lab[3];
-  fQ=hit[4];
-  fNy    = info[0];
-  fNz    = info[1];
-  fLayer = info[2];
-  fChargeRatio = 0;
-  fType=0;
-  fDeltaProb=0.;  
-  fGeom = 0;
 }
 
 //----------------------------------------------------------------------
@@ -134,12 +161,17 @@ void AliITSRecPoint::Print(ostream *os){
 #endif
  
     fmt = os->setf(ios::fixed);  // set fixed floating point output
-    *os << fTracks[0]<< " " << fTracks[1] << " " << fTracks[2] << " ";
-    *os << fXloc << " " << fZloc << " " << fQ << " ";
+    *os << GetLabel(0) << " " << GetLabel(1) << " " << GetLabel(2) << " ";
     fmt = os->setf(ios::scientific); // set scientific for dEdX.
-    *os << fdEdX << " ";
+    *os << GetX() <<" " << GetY() << " " << GetZ() << " " ;
+    *os << GetSigmaY2() << " " << GetSigmaZ2() << " " << GetSigmaYZ() << " ";
+    fmt = os->setf(ios::fixed);
+    *os << GetVolumeId() << " "<< Misalign() /*fIsMisaligned*/ << " ";
+    fmt = os->setf(ios::scientific); // set scientific for dEdX.
+    *os << fXloc << " " << fZloc << " " << fdEdX << " ";
     fmt = os->setf(ios::fixed); // every fixed
-    *os << fSigmaY2 << " " << fSigmaZ2;
+    *os << fIndex <<" " << fQ << " "<<fLayer <<" "<<fNz<<" "<<fNy<<" ";
+    *os << fChargeRatio<<" " << fType << " " << fDeltaProb << " " << fDriftTime;
     os->flags(fmt); // reset back to old formating.
     return;
 }
@@ -148,10 +180,21 @@ void AliITSRecPoint::Read(istream *is){
 ////////////////////////////////////////////////////////////////////////
 // Standard input format for this class.
 ////////////////////////////////////////////////////////////////////////
+    Bool_t mis;
+    Int_t lab[4];
+    Float_t hit[6];
+    lab[3] = 0; // ??
+    *is >> lab[0] >> lab[1] >> lab[2];
+    SetLabel(lab[0],0); SetLabel(lab[1],1); SetLabel(lab[2],2);
+    *is >> hit[0] >> hit[1] >> hit[2] >> hit[3] >> hit[4] >> hit[5];
+    SetX(hit[0]);SetY(hit[1]);SetZ(hit[2]);SetSigmaY2(hit[3]);
+    SetSigmaZ2(hit[4]);//fSigmaYZ=hit[5];
+    *is >> lab[0] >> mis;
+    SetVolumeId(lab[0]);// fIsMisalinged = mis;
+    *is >> fXloc >> fZloc >> fdEdX;
+    *is >> fIndex >> fQ >> fLayer >> fNz >> fNy >> fChargeRatio >> fType;
+    *is >> fDeltaProb >> fDriftTime;
 
-    *is >> fTracks[0] >> fTracks[1] >> fTracks[2] >> fXloc >> fZloc >> fQ;
-    *is >> fdEdX >> fSigmaY2 >> fSigmaZ2;
     return;
 }
 //----------------------------------------------------------------------