45 TFile f(
"tree1.root",
"recreate");
46 TTree t1(
"t1",
"a simple Tree with simple variables");
50 t1.Branch(
"px",&px,
"px/F");
51 t1.Branch(
"py",&py,
"py/F");
52 t1.Branch(
"pz",&pz,
"pz/F");
53 t1.Branch(
"random",&random,
"random/D");
54 t1.Branch(
"ev",&ev,
"ev/I");
57 for (
Int_t i=0;i<10000;i++) {
88 TH1F *hpx =
new TH1F(
"hpx",
"px distribution",100,-3,3);
89 TH2F *hpxpy =
new TH2F(
"hpxpy",
"py vs px",30,-3,3,30,-3,3);
101 if (
gROOT->IsBatch())
return;
virtual Int_t Fill(Double_t x)
Increment bin with abscissa X by 1.
virtual void Rannor(Float_t &a, Float_t &b)
Return 2 numbers distributed following a gaussian with mean=0 and sigma=1.
THist< 1, float, THistStatContent, THistStatUncertainty > TH1F
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
virtual Int_t GetEntry(Long64_t entry=0, Int_t getall=0)
Read all branches of entry and return total number of bytes read.
1-D histogram with a float per channel (see TH1 documentation)}
virtual void StartViewer()
Start the TTreeViewer on this tree.
virtual Int_t SetBranchAddress(const char *bname, void *add, TBranch **ptr=0)
Change branch address, dealing with clone trees properly.
virtual Double_t Rndm()
Machine independent random number generator.
Using a TBrowser one can browse all ROOT objects.
2-D histogram with a float per channel (see TH1 documentation)}
R__EXTERN TRandom * gRandom
virtual Long64_t GetEntries() const
A TTree object has a header with a name and a title.
Int_t Fill(Double_t)
Invalid Fill method.
THist< 2, float, THistStatContent, THistStatUncertainty > TH2F