Please how can I read a root file containing a folder called ntupleProducer. This ntupleProducer contains two trees: tree;1 and tree2; ?
I used the code attached to read this root file but it does not work (I used different methods!). When I use the second method, I get this message: warning: null passed to a callee that requires a non-null argument [-Wnonnull] tree->Draw(“genParticlePx>>hist1”, cut1);
void tree_example2() {
auto f = new TFile("ntuple_array.root");
auto tree = (TTree*)f->Get("ntupleProducer/tree;1");
auto c = new TCanvas();
TCut cut1 = "genParticleCharge != 0";
auto hist1 = new TH1F("hist1", "hist1", 100, -200., 200.);
tree->Draw("genParticlePx >> hist1",cut1,"goff");
hist1->Draw();
hist1->GetXaxis()->SetTitle("genParticlePx");
c->SaveAs("plot.pdf");
}