Logo ROOT  
Reference Guide
 
Loading...
Searching...
No Matches
fitpanel6.cxx File Reference

Detailed Description

/*************************************************************************
* Copyright (C) 1995-2019, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#include "TH1.h"
#include "TFile.h"
void fitpanel6()
{
TFile::Open("hsimple.root");
if (gFile) {
gFile->Get("hpx");
gFile->Get("hpxpy");
gFile->Get("hprof");
}
// create panel
auto panel = std::make_shared<ROOT::Experimental::RFitPanel>("FitPanel");
TH1F *test = new TH1F("test","This is test histogram",100,-4,4);
test->FillRandom("gaus", 10000);
panel->AssignHistogram(test);
panel->Show();
panel->ClearOnClose(panel);
}
#define gFile
Definition TFile.h:347
static TFile * Open(const char *name, Option_t *option="", const char *ftitle="", Int_t compress=ROOT::RCompressionSetting::EDefaults::kUseCompiledDefault, Int_t netopt=0)
Create / open a file.
Definition TFile.cxx:4082
1-D histogram with a float per channel (see TH1 documentation)
Definition TH1.h:621
virtual void FillRandom(const char *fname, Int_t ntimes=5000, TRandom *rng=nullptr)
Fill histogram following distribution in function fname.
Definition TH1.cxx:3519
Date
2019-04-11
Warning
This is part of the ROOT 7 prototype! It will change without notice. It might trigger earthquakes. Feedback is welcome!
Authors
Sergey Linev S.Lin.nosp@m.ev@g.nosp@m.si.de, Iliana Betsou Ilian.nosp@m.a.Be.nosp@m.tsou@.nosp@m.cern.nosp@m..ch

Definition in file fitpanel6.cxx.