This simple macro demonstrates persistency of FOAM object.
First run macro foam_demo.C to create file foam_demo.root with FOAM object.
Next type root -l foam_demopers.C from shell command line
{
macroName.
Append(
"/math/foam/foam_demo.C");
cout<<"====================== TestVector ================================"<<endl;
TFile fileA(
"foam_demo.root");
fileA.cd();
cout<<"------------------------------------------------------------------"<<endl;
fileA.ls();
cout<<"------------------------------------------------------------------"<<endl;
fileA.Map();
cout<<"------------------------------------------------------------------"<<endl;
fileA.ShowStreamerInfo();
cout<<"------------------------------------------------------------------"<<endl;
fileA.GetListOfKeys()->Print();
cout<<"------------------------------------------------------------------"<<endl;
for(long loop=0; loop<50000; loop++){
if(loop<10) cout<<
"(x,y) = ( "<<
x <<
", "<<
y <<
" )"<<endl;
}
cout << " MCresult= " << MCresult << " +- " << MCerror <<endl;
cout<<"===================== TestPers FINISHED ======================="<<endl;
return 0;
}
int Int_t
Signed integer 4 bytes (int).
double Double_t
Double 8 bytes.
A file, usually with extension .root, that stores data and code in the form of serialized objects in ...
Abstract class representing n-dimensional real positive integrand function.
virtual void Finalize(Double_t &, Double_t &)
virtual void CheckAll(Int_t)
virtual void GetIntegMC(Double_t &, Double_t &)
virtual void SetRho(TFoamIntegrand *Rho)
virtual void GetMCvect(Double_t *)
const char * Data() const
TString & Append(const char *cs)
static TString Format(const char *fmt,...)
Static method which formats a string using a printf style format descriptor and return a TString.
- Author
- Stascek Jadach
Definition in file foam_demopers.C.