]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - RALICE/AliHelix.cxx
In MUONmappingLinkDef.h:
[u/mrichter/AliRoot.git] / RALICE / AliHelix.cxx
index 112a90046184df56fdebcbb018ed081d3b9a976e..3ebafe5c56410621b60b67da83918fb5916d5891 100644 (file)
 // This class is meant to provide a means to display and extrapolate
 // AliTrack objects in the presence of a constant homogeneous magnetic field. 
 //
+// For track/event displays the line width, colour etc... can be set using the
+// standard facilities (see TAttLine).
+// By default the linewith is set to 2 and the colour set to -1 in the constructor.
+// The latter results in an automatic colour coding according to the track charge
+// with the convention positive=red neutral=green negative=blue.
+//
+// To indicate the track starting point, the memberfunction SetMarker()
+// may be used.
+// By default no marker will be displayed. 
+//
 // Examples :
 // ==========
 //
 //- Modified: NvE $Date$ Utrecht University
 ///////////////////////////////////////////////////////////////////////////
 
+#include <cstdlib>
 #include "AliHelix.h"
 #include "Riostream.h"
  
@@ -153,6 +164,13 @@ AliHelix::AliHelix() : THelix()
  fCurves=0;
  fExt=0;
  fTofmax=1e-8;
+ fMstyle=-1;
+ fMsize=0;
+ fMcol=0;
+ fEnduse=1;
+
+ fLineWidth=2;
+ fLineColor=-1;
 }
 ///////////////////////////////////////////////////////////////////////////
 AliHelix::~AliHelix()
@@ -175,6 +193,11 @@ AliHelix::AliHelix(const AliHelix& h) : THelix(h)
 // Copy constructor
  fB=h.fB;
  fRefresh=h.fRefresh;
+ fTofmax=h.fTofmax;
+ fMstyle=h.fMstyle;
+ fMsize=h.fMsize;
+ fMcol=h.fMcol;
+ fEnduse=h.fEnduse;
 }
 ///////////////////////////////////////////////////////////////////////////
 void AliHelix::SetB(Ali3Vector& b)
@@ -215,6 +238,32 @@ Float_t AliHelix::GetTofmax() const
  return fTofmax;
 }
 ///////////////////////////////////////////////////////////////////////////
+void AliHelix::SetMarker(Int_t style,Float_t size,Int_t col)
+{
+// Specify the marker (style, size and colour) to indicate the starting point
+// of a track in a display.
+// In case col<0 the marker will have the same color as the track itself.
+// 
+// Defaults are style=8, size=0.2 and col=-1.
+ fMstyle=style;
+ fMsize=size;
+ fMcol=col;
+}
+///////////////////////////////////////////////////////////////////////////
+void AliHelix::UseEndPoint(Int_t mode)
+{
+// Select usage of track endpoint in drawing and extrapolation.
+// This allows correct event displays even for very long tracks.
+//
+// mode = 0 : Do not use the track endpoint
+//        1 : Use the track endpoint
+// 
+// The default value is mode=1 (which is also set in the constructor).
+
+ if (mode==0 || mode==1) fEnduse=mode; 
+}
+///////////////////////////////////////////////////////////////////////////
 void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 {
 // Make the helix curve for the specified AliTrack.
@@ -223,12 +272,12 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 // In case one wants to display or extrapolate an AliTrack it is preferable
 // to use the Display() or Extrapolate() memberfunctions.
 // It is assumed that the track charge is stored in elementary units
-// (i.e. charge=1 for a proton) and that the track energy is stored in GeV.
+// (i.e. charge=1 for a proton).
 // The input argument "scale" specifies the unit scale for the various
 // locations where scale=0.01 indicates unit scales in cm etc...
 // In case scale<=0, the unit scale for locations is determined from the
 // begin, reference or endpoint of the track. If neither of these
-// positions is present, all locations are assumed to be given in cm.
+// positions is present, all locations are assumed to be given in meter.
 // The lower and upper bounds for the range are specified by range[0] and
 // range[1] and the argument "iaxis" indicates along which axis this range
 // is specified.
@@ -257,13 +306,14 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 
  if (!t || (range && !iaxis)) return;
 
- Double_t energy=t->GetEnergy();
+ Double_t energy=t->GetEnergy(1); // Track energy in GeV
  Double_t betanorm=t->GetBeta();
 
  if (energy<=0 || betanorm<=0) return;
 
  AliPosition* rbeg=t->GetBeginPoint();
- AliPosition* rend=t->GetEndPoint();
+ AliPosition* rend=0;
+ if (fEnduse) rend=t->GetEndPoint();
  AliPosition* rref=t->GetReferencePoint();
 
  // Magnetic field vector or default Z-direction
@@ -273,7 +323,7 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
  // The unit scale for locations if not specified by the user
  if (scale<=0)
  {
-  scale=0.01; // Set default to cm
+  scale=1; // Set default to meter
   if (rbeg)
   {
    scale=rbeg->GetUnitScale();
@@ -316,29 +366,26 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 
  // The LAB location in which the velocity of the particle is defined
  Double_t loc[3]={0,0,0};
- Ali3Vector* rx=0;
- Double_t scalex=0;
+ Ali3Vector rx;
+ Double_t scalex=-1;
  if (rref)
  {
-  rx=(Ali3Vector*)rref;
+  rx=(Ali3Vector)(*rref);
   scalex=rref->GetUnitScale();
  }
  else if (rbeg)
  {
-  rx=(Ali3Vector*)rbeg;
+  rx=(Ali3Vector)(*rbeg);
   scalex=rbeg->GetUnitScale();
  }
  else if (rend)
  {
-  rx=(Ali3Vector*)rend;
+  rx=(Ali3Vector)(*rend);
   scalex=rend->GetUnitScale();
  }
 
- if (rx)
- {
-  if (scalex/scale>1.1 || scale/scalex>1.1) (*rx)*=scalex/scale;
-  rx->GetVector(loc,"car");
- }
+ if (scalex>0 && (scalex/scale>1.1 || scale/scalex>1.1)) rx*=scalex/scale;
+ rx.GetVector(loc,"car");
 
  // Initialisation of Helix kinematics
  SetHelix(loc,vel,w,0,kUnchanged,bvec);
@@ -359,8 +406,8 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
  Double_t vec2[3]={0,0,0};
  Ali3Vector r1;
  Ali3Vector r2;
- Double_t scale1=0.01;
- Double_t scale2=0.01;
+ Double_t scale1=1;
+ Double_t scale2=1;
 
  if (!bend)
  {
@@ -396,7 +443,7 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
    // generated in view of accuracy in the case of extrapolations.
    tof=tmax-tmin;
    v=beta*c;
-   if (rx) r1=(*rx);
+   r1=rx;
    r=v*tmin;
    r1=r1+r;
    r1.GetVector(vec1,"car");
@@ -419,7 +466,7 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
    tmin=0;
    if (fabs(fVz)>0) tmin=-fZ0/fVz;
    v=beta*c;
-   if (rx) r1=(*rx);
+   r1=rx;
    r=v*tmin;
    r1=r1+r;
 
@@ -477,8 +524,8 @@ void AliHelix::MakeCurve(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 
   if (!range) // Automatic range determination
   {
-   scale1=0.01;
-   scale2=0.01;
+   scale1=1;
+   scale2=1;
    if (rbeg)
    {
     r1=rbeg->GetPrimed(fRotMat);
@@ -591,12 +638,12 @@ void AliHelix::Display(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 // Various curves can be displayed together or individually; please refer to
 // the memberfunction Refresh() for further details.
 // It is assumed that the track charge is stored in elementary units
-// (i.e. charge=1 for a proton) and that the track energy is stored in GeV.
+// (i.e. charge=1 for a proton).
 // The input argument "scale" specifies the unit scale for the various
 // locations where scale=0.01 indicates unit scales in cm etc...
 // In case scale<=0, the unit scale for locations is determined from the
 // begin, reference or endpoint of the track. If neither of these
-// positions is present, all locations are assumed to be given in cm.
+// positions is present, all locations are assumed to be given in meter.
 // The lower and upper bounds for the range are specified by range[0] and
 // range[1] and the argument "iaxis" indicates along which axis this range
 // is specified.
@@ -630,6 +677,9 @@ void AliHelix::Display(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 // TView* view=new TView(1);
 // view->SetRange(-1000,-1000,-1000,1000,1000,1000);
 // view->ShowAxis();
+//
+// The user can also use the 3D viewing facilities from the TCanvas menu
+// to open an appropriate view. 
 
  if (!t || (range && !iaxis)) return;
 
@@ -637,17 +687,24 @@ void AliHelix::Display(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
 
  if (fRefresh>0) Refresh(fRefresh);
 
- Int_t np=GetN();
+ Int_t np=GetLastPoint()+1;
  if (!np) return;
 
  Float_t* points=GetP();
  TPolyLine3D* curve=new TPolyLine3D(np,points);
 
- curve->SetLineWidth(2);
- Float_t q=t->GetCharge();
- curve->SetLineColor(kGreen);
- if (q>0) curve->SetLineColor(kRed);
- if (q<0) curve->SetLineColor(kBlue);
+ curve->SetLineWidth(fLineWidth);
+ if (fLineColor<0)
+ {
+  Float_t q=t->GetCharge();
+  curve->SetLineColor(kGreen);
+  if (q>0) curve->SetLineColor(kRed);
+  if (q<0) curve->SetLineColor(kBlue);
+ }
+ else
+ {
+  curve->SetLineColor(fLineColor);
+ }
  curve->Draw();
 
  if (!fCurves)
@@ -656,6 +713,20 @@ void AliHelix::Display(AliTrack* t,Double_t* range,Int_t iaxis,Double_t scale)
   fCurves->SetOwner();
  }
  fCurves->Add(curve);
+
+ // Display the marker for the track starting point
+ if (fMstyle>0)
+ {
+  TPolyMarker3D* m=new TPolyMarker3D();
+  m->SetPoint(0,points[0],points[1],points[2]);
+  m->SetMarkerStyle(fMstyle);
+  m->SetMarkerSize(fMsize);
+  Int_t col=curve->GetLineColor();
+  if (fMcol>0) col=fMcol;
+  m->SetMarkerColor(col);
+  m->Draw();
+  fCurves->Add(m);
+ }
 }
 ///////////////////////////////////////////////////////////////////////////
 void AliHelix::Refresh(Int_t mode)
@@ -693,6 +764,9 @@ void AliHelix::Display(AliEvent* evt,Double_t* range,Int_t iaxis,Double_t scale)
 // TView* view=new TView(1);
 // view->SetRange(-1000,-1000,-1000,1000,1000,1000);
 // view->ShowAxis();
+//
+// The user can also use the 3D viewing facilities from the TCanvas menu
+// to open an appropriate view. 
 
  if (!evt) return;
 
@@ -706,6 +780,44 @@ void AliHelix::Display(AliEvent* evt,Double_t* range,Int_t iaxis,Double_t scale)
  }
 }
 ///////////////////////////////////////////////////////////////////////////
+void AliHelix::Display(TObjArray* arr,Double_t* range,Int_t iaxis,Double_t scale)
+{
+// Display the helix curves of all tracks in the specified array.
+// A convenient way to obtain an array with selected tracks from e.g. an AliEvent
+// is to make use of its GetTracks() selection facility.
+// Various arrays can be displayed together or individually; please refer to
+// the memberfunction Refresh() for further details.
+// Please refer to the track display memberfunction for further details
+// on the input arguments.
+// 
+// The default values are range=0, iaxis=3 and scale=-1.
+//
+// Note :
+// ------
+// Before any display activity, a TCanvas and a TView have to be initiated
+// first by the user like for instance
+// 
+// TCanvas* c1=new TCanvas("c1","c1");
+// TView* view=new TView(1);
+// view->SetRange(-1000,-1000,-1000,1000,1000,1000);
+// view->ShowAxis();
+//
+// The user can also use the 3D viewing facilities from the TCanvas menu
+// to open an appropriate view. 
+
+ if (!arr) return;
+
+ Int_t ntk=arr->GetEntries();
+ for (Int_t jtk=0; jtk<ntk; jtk++)
+ {
+  TObject* obj=arr->At(jtk);
+  if (!obj) continue;
+  if (!(obj->InheritsFrom("AliTrack"))) continue;
+  AliTrack* tx=(AliTrack*)obj;
+  Display(tx,range,iaxis,scale);
+ }
+}
+///////////////////////////////////////////////////////////////////////////
 AliPosition* AliHelix::Extrapolate(AliTrack* t,Double_t* pars,Double_t scale)
 {
 // Extrapolate an AliTrack according to the corresponding helix curve
@@ -715,12 +827,12 @@ AliPosition* AliHelix::Extrapolate(AliTrack* t,Double_t* pars,Double_t scale)
 // Detailed information of all the helix points used in the extrapolation
 // can be obtained via the GetN() and GetP() memberfunctions of TPolyLine3D.
 // It is assumed that the track charge is stored in elementary units
-// (i.e. charge=1 for a proton) and that the track energy is stored in GeV.
+// (i.e. charge=1 for a proton).
 // The input argument "scale" specifies the unit scale for the various
 // locations where scale=0.01 indicates unit scales in cm etc...
 // In case scale<=0, the unit scale for locations is determined from the
 // begin, reference or endpoint of the track. If neither of these
-// positions is present, all locations are assumed to be given in cm.
+// positions is present, all locations are assumed to be given in meter.
 // The extrapolation parameters for the impact plane and required accuracy
 // are specified by pars[0], pars[1] and pars[2], respectively.
 // pars[0] = coordinate value of the plane for the impact point
@@ -761,7 +873,7 @@ AliPosition* AliHelix::Extrapolate(AliTrack* t,Double_t* pars,Double_t scale)
  // The unit scale for locations if not specified by the user
  if (scale<=0)
  {
-  scale=0.01; // Set default to cm
+  scale=1; // Set default to meter
   if (rbeg)
   {
    scale=rbeg->GetUnitScale();
@@ -784,7 +896,7 @@ AliPosition* AliHelix::Extrapolate(AliTrack* t,Double_t* pars,Double_t scale)
 
  MakeCurve(t,range,iaxis,scale);
 
- Int_t np=GetN();
+ Int_t np=GetLastPoint()+1;
  if (!np) return fExt;
 
  Float_t* points=GetP();
@@ -794,7 +906,7 @@ AliPosition* AliHelix::Extrapolate(AliTrack* t,Double_t* pars,Double_t scale)
  Float_t first[3]={points[3*ip],points[3*ip+1],points[3*ip+2]};
 
  // Last point of the curve around the impact
- ip=np-1;
+ ip=GetLastPoint();
  Float_t last[3]={points[3*ip],points[3*ip+1],points[3*ip+2]};
 
  // The accuracy on the impact point