updated doc (svn -> git). Some minor changes.

This commit is contained in:
2014-10-25 11:13:35 +02:00
parent d635eb33fd
commit 535b31f736
19 changed files with 2882 additions and 137 deletions

View File

@@ -182,7 +182,7 @@ double TSinSqDWaveGapIntegralCuhre::IntegrateFunc()
int TSinSqDWaveGapIntegralCuhre::Integrand(const int *ndim, const double x[],
const int *ncomp, double f[], void *userdata) // x = {E, phi}, fPar = {twokBT, DeltaD(T), Ec, phic, DeltaS(T)}
{
double deltasq(TMath::Power(fPar[1]*TMath::Cos(2.0*x[1]*fPar[3]) + fPar[4],2.0));
double deltasq(TMath::Power(fPar[1]*TMath::Cos(2.0*x[1]*fPar[3]) + fPar[4], 2.0));
f[0] = TMath::Power(TMath::Sin(x[1]*fPar[3]),2.0)/TMath::Power(TMath::CosH(TMath::Sqrt(x[0]*x[0]*fPar[2]*fPar[2]+deltasq)/fPar[0]),2.0);
return 0;
}

View File

@@ -3304,7 +3304,7 @@ int PNeXus::ReadFileIdf2()
{
cout << endl << ">> reading NeXus IDF Version 2 file ..." << endl;
// create first the necessary NXentry object for IDF Version 1
// create first the necessary NXentry object for IDF Version 2
fNxEntry2 = new PNeXusEntry2();
if (fNxEntry2 == 0) {
fErrorCode = PNEXUS_OBJECT_INVOK_ERROR;