StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
rdLcpTreeTest.C
1  float vz;
2  int nTr;
3  TChain *chain = new TChain("Tjas","jDst");
4 
5 rdLcpTree() {
6  // f=TFile("htree.root");
7  //f->ls();
8  //TH1F *h=f->Get("hpx");
9  // h->Draw();
10 
11 
12  chain->AddFile("./wrkLcp/R3011049.tree.root", -1);
13  chain->AddFile("./wrkLcp/R3011050.tree.root", -1);
14  chain->AddFile("./wrkLcp/R3011051.tree.root", -1);
15  chain->AddFile("./wrkLcp/R3011052.tree.root", -1);
16  chain->AddFile("./wrkLcp/R3012001.tree.root", -1);
17  chain->AddFile("./wrkLcp/R3012002.tree.root", -1);
18  chain->AddFile("./wrkLcp/R3012008.tree.root", -1);
19 
20  chain->SetBranchAddress("vz",&vz);
21  chain->SetBranchAddress("nPrim",&nTr);
22 
23 
24  int N=chain->GetEntries();
25  printf("N=%d\n",N);
26  system("date");
27  int k;
28  for(k=0;k<N;k++) {
29  int ret=chain->GetEntry(k);
30  assert(ret);
31  if(k%2000==0)printf("%d %d %d %f\n",k,ret,nTr,vz);
32  }
33  system("date");
34 
35 }