Back to index

PdbPmtFitPar.cc

 
//----------------------------------------------------------------------------- 
//  $header$ 
// 
//  The pdbcal package 
//  Copyright (C) PHENIX collaboration, 1999 
// 
//  Implementation of class PdbPmtFitPar 
// 
//  Author: ohnishi 
//----------------------------------------------------------------------------- 
#include "PdbPmtFitPar.hh" 
 
#include <iostream.h> 
 
PdbPmtFitPar::PdbPmtFitPar() 
{ 
   Par0=0; 
   Par1=0; 
   Par2=0; 
   Par3=0; 
   Par4=0; 
   Chi2=0; 
   Status=0; 
} 
 
PdbPmtFitPar::~PdbPmtFitPar() 
{ 
} 
 
void PdbPmtFitPar::print() const 
{ 
   cout << endl; 
   printf("PmtFitPar = %f %f %f %f %f %f, Chi2 = %f\n", 
           Par0,Par1,Par2,Par3,Par4,Chi2); 
} 

Back to index