| h1analysisProxy.C: Example of analysis class for the H1 data using code generated by MakeProxy. | Trees I/O, Queries, Graphics | htest.C: Example illustrating how to save histograms in Tree branches. |
{
//creates a TChain to be used by the h1analysis.C class
//the symbol H1 must point to a directory where the H1 data sets
//have been installed
TChain chain("h42");
chain.Add("$H1/dstarmb.root");
chain.Add("$H1/dstarp1a.root");
chain.Add("$H1/dstarp1b.root");
chain.Add("$H1/dstarp2.root");
}
|
|