#include "hparcond.h"
#include "hparamlist.h"
#include <iostream>
#include <iomanip>
ClassImp(HParCond)
void HParCond::printParams() {
std::cout<<"\n---------------------------------------------\n";
std::cout<<"----- "<<GetName()<<" -----\n";
if (!paramContext.IsNull()) std::cout<<"-- Context/Purpose: "<<paramContext<<'\n';
if (!author.IsNull()) std::cout<<"-- Author: "<<author<<'\n';
if (!description.IsNull()) std::cout<<"-- Description: "<<description<<'\n';
std::cout<<"---------------------------------------------\n";
HParamList* condList = new HParamList;
putParams(condList);
condList->print();
std::cout<<"---------------------------------------------\n\n";
delete condList;
}
Last change: Sat May 22 13:06:22 2010
Last generated: 2010-05-22 13:06
This page has been automatically generated. If you have any comments or suggestions about the page layout send a mail to ROOT support, or contact the developers with any questions or problems regarding ROOT.