From 05811130ea9f3ca27ffc508b63f417aee39d5e14 Mon Sep 17 00:00:00 2001 From: "Bastian M. Wojek" Date: Thu, 10 Apr 2008 15:00:52 +0000 Subject: [PATCH] Added the missing 't' in 'TWO_PI*val[1]*t' for internFld... --- src/classes/PTheory.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/classes/PTheory.cpp b/src/classes/PTheory.cpp index e115ad57..8ae84540 100644 --- a/src/classes/PTheory.cpp +++ b/src/classes/PTheory.cpp @@ -962,7 +962,7 @@ double PTheory::InternalField(register double t, const vector& paramValu } return 0.666666666666667* - TMath::Cos(DEG_TO_RAD*val[0]+TWO_PI*val[1])* + TMath::Cos(DEG_TO_RAD*val[0]+TWO_PI*val[1]*t)* TMath::Exp(-val[2]*t) + 0.333333333333333*TMath::Exp(-val[3]*t); }