]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - STEER/AliESDHLTtrack.cxx
Using AliMpDDLStore::GetBusPatchId instead of static arrays (Christian)
[u/mrichter/AliRoot.git] / STEER / AliESDHLTtrack.cxx
index 9028e5ead3925680e7729e6874d48addaee589a6..8995c0893ecfacbbd3f987cca278a03d19e1898f 100644 (file)
@@ -46,6 +46,7 @@ AliESDHLTtrack::AliESDHLTtrack() :
   fSizeY(0),
   fPID(0)
 {
+  // Default constructor
   fRowRange[0] = fRowRange[1] = 0;
   fFirstPoint[0] = fFirstPoint[1] = fFirstPoint[2] = 0;
   fLastPoint[0] = fLastPoint[1] = fLastPoint[2] = 0;
@@ -59,6 +60,7 @@ Double_t AliESDHLTtrack::GetP() const
 
 Double_t AliESDHLTtrack::GetPseudoRapidity() const
 {
+  // Calculates the pseudorapidity
   return 0.5 * TMath::Log((GetP() + GetPz()) / (GetP() - GetPz()));
 }