]> git.uio.no Git - u/mrichter/AliRoot.git/commitdiff
Coding convention violation (RS3): suppression
authordecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 19 Jan 2010 14:36:29 +0000 (14:36 +0000)
committerdecaro <decaro@f7af4fe6-9843-0410-8265-dc069ae4e863>
Tue, 19 Jan 2010 14:36:29 +0000 (14:36 +0000)
TOF/AliTOFrawData.cxx
TOF/AliTOFtrack.cxx

index ceb91cd82323aff7ca05d8678e550758cded3534..c8480d099ecd02f7a7c3f6e49192c8bd3fb72585 100644 (file)
@@ -179,7 +179,7 @@ void AliTOFrawData::Update(Int_t tof, Int_t tot, Int_t leading, Int_t trailing,
 Int_t AliTOFrawData::GetTOT() const
 {
   //
-  //
+  // Return the TOT measurement
   //
 
   Int_t dummyToT = 0;
index ac26bd4b5968a384bbf87921674e72d0efb8b060..104c5e3831fd9ad5d80ba7f41fc57dd63ea509f6 100644 (file)
@@ -88,9 +88,11 @@ AliTOFtrack& AliTOFtrack::operator=(const AliTOFtrack &/*source*/)
 
 //_____________________________________________________________________________
 Bool_t AliTOFtrack::PropagateTo(Double_t xk,Double_t x0,Double_t rho)
-{
+ {
+  //
   // Propagates a track of particle with mass=pm to a reference plane 
   // defined by x=xk through media of density=rho and radiationLength=x0
+  //
 
   if (xk == GetX()) return kTRUE;
   
@@ -168,8 +170,9 @@ Bool_t AliTOFtrack::PropagateToInnerTOF()
 //_________________________________________________________________________
 Double_t AliTOFtrack::GetPredictedChi2(const AliCluster3D *c) const {
   //
+  // Estimate the chi2 of the space point "c" with its cov. matrix elements
   //
-  //
+
   Double_t p[3]={c->GetX(), c->GetY(), c->GetZ()};
   Double_t covyz[3]={c->GetSigmaY2(), c->GetSigmaYZ(), c->GetSigmaZ2()};
   Double_t covxyz[3]={c->GetSigmaX2(), c->GetSigmaXY(), c->GetSigmaXZ()};
@@ -178,7 +181,7 @@ Double_t AliTOFtrack::GetPredictedChi2(const AliCluster3D *c) const {
 //_________________________________________________________________________
 Bool_t AliTOFtrack::PropagateTo(const AliCluster3D *c) {
   //
-  //
+  // Propagates a track to the plane containing cluster 'c'
   //
   Double_t oldX=GetX(), oldY=GetY(), oldZ=GetZ();
   Double_t p[3]={c->GetX(), c->GetY(), c->GetZ()};