10 #include "TObjString.h"
62 lfunc->SetOwner(kTRUE);
67 c1 =
new TCanvas(Form(
"%s_canvas", GetName()), Form(
"%s_canvas", GetName()), 0, 0, 1200, 600);
69 c1->AddExec(
"interval",
"ap->GetInterval()");
70 c1->AddExec(
"recommence",
"ap->Recommence()");
71 c1->AddExec(
"gather",
"ap->Gather()");
74 lplabel->SetOwner(kTRUE);
75 lplabel->Add(
new TPaveLabel(0.10, 0.92, 0.25, 0.99,
"Annule Tout",
"NDC"));
76 lplabel->Add(
new TPaveLabel(0.27, 0.92, 0.44, 0.99,
"Annule Dernier",
"NDC"));
77 lplabel->Add(
new TPaveLabel(0.46, 0.92, 0.55, 0.99,
"Gather",
"NDC"));
78 lplabel->Add(
new TPaveLabel(0.57, 0.92, 0.65, 0.99,
"Suivant",
"NDC"));
80 lplabel->Execute(
"SetTextSize",
"0.625");
81 lplabel->Execute(
"SetFillColor",
"10");
90 gStyle->SetOptTitle(0);
209 if (option ==
"all") {
210 Info(
"SetHistos",
"On s'occupe de tous les histos de la liste");
212 else if (option ==
"relecture") {
213 Info(
"SetHistos",
"On s'occupe de tous les histos de la liste en relisant les infos des histos pour lesquels on en a (des info)");
215 else if (option ==
"inconnu") {
216 Info(
"SetHistos",
"On ne s'occupe que des histos pour lesquels on n'a pas d info");
219 Info(
"SetHistos",
"la variable option doit prendre la valeur \"all\", \"relecture\" ou \"inconnu\"");
246 Info(
"NextHisto",
"Fin de la liste d histos");
259 Info(
"NextHisto",
"Fin de la liste d histos");
276 Info(
"Print",
"Liste des fonctions pour l'histogram %s :",
hfit->GetName());
278 Info(
"Print",
"Liste des fonctions :");
318 Info(
"NewFunction_1D",
"To be defined in child class");
327 Info(
"NewFunction_2D",
"To be defined in child class");
356 Info(
"ReloadFunction_1D",
"To be defined in child class");
365 Info(
"ReloadFunction_2D",
"To be defined in child class");
408 if (hh->InheritsFrom(
"TH2")) {
412 else if (hh->InheritsFrom(
"TH1")) {
418 Warning(
"SetHisto",
"La dimension de lhisto n'est pas compatible avec celle definie ds cette classe");
424 hclone = (TH1*)hh->Clone(
"ap_clone");
452 Int_t
event = gPad->GetEvent();
453 TObject* select = gPad->GetSelected();
456 if (event == 24)
HandleKey(gPad->GetEventY());
460 if (select->InheritsFrom(
"TPaveLabel"))
464 if (event == kButton1Down) {
466 Int_t xx = gPad->GetEventX();
467 Int_t yy = gPad->GetEventY();
469 Xmin = gPad->AbsPixeltoX(xx);
470 Ymin = gPad->AbsPixeltoY(yy);
474 else if (event == kButton2Up) {
476 Int_t xx = gPad->GetEventX();
477 Int_t yy = gPad->GetEventY();
479 Xmax = gPad->AbsPixeltoX(xx);
480 Ymax = gPad->AbsPixeltoY(yy);
485 Double_t temp =
Ymax;
491 else if (event == kButton1Double) {
498 printf(
"\tX : %lf %lf\n",
Xmin,
Xmax);
499 printf(
"\tY : %lf %lf\n",
Ymin,
Ymax);
512 f2Dfit->Draw(
"same,cont2");
534 Int_t
event = gPad->GetEvent();
535 TObject* select = gPad->GetSelected();
539 if (event == kButton1Down) {
540 if (!strcmp(
"Annule Tout", select->GetTitle())) {
541 Info(
"",
"On efface les fonctions...");
546 if (!strcmp(
"Annule Dernier", select->GetTitle())) {
547 Info(
"",
"On retire la derniere fonction ...");
548 Int_t nf =
lfunc->GetEntries();
550 delete lfunc->RemoveAt(nf - 1);
553 if (!strcmp(
"Suivant", select->GetTitle())) {
570 Int_t
event = gPad->GetEvent();
571 TObject* select = gPad->GetSelected();
573 if (event == kButton1Down) {
574 if (!strcmp(
"Gather", select->GetTitle())) {
575 Info(
"Gather",
"Do nothing");
588 if (
lfunc->GetEntries() == 0)
return;
591 ofstream fout(Form(
"%s",
hfit->GetName()));
593 fout <<
"// Functions generated by class=" << GetName() << endl;
594 #ifdef WITH_BZR_INFOS
595 fout <<
"// From bzr revision=" << KVBase::bzrRevisionNumber() << endl;
597 #ifdef WITH_GIT_INFOS
600 fout <<
lfunc->GetEntries() << endl;
601 while ((f1 = (TF1*)it.Next())) {
602 fout << f1->GetName() << endl;
605 fout << f1->GetExpFormula() << endl;
607 fout << f1->GetNpar() << endl;
608 Double_t x1, x2, y1, y2;
610 f1->GetRange(x1, x2);
611 fout << x1 <<
" " << x2 << endl;
614 f1->GetRange(x1, y1, x2, y2);
615 fout << x1 <<
" " << x2 <<
" " << y1 <<
" " << y2 << endl;
617 for (Int_t ii = 0; ii < f1->GetNpar(); ii += 1) {
618 fout << ii <<
" " << f1->GetParameter(ii) <<
" " << f1->GetParError(ii) << endl;
633 Info(
"Relecture",
"%s, Reading existing data", name);
641 f1d.Form(
"%s::f1D", GetName());
644 while (line.BeginsWith(
"//")) line.ReadLine(fin);
646 Int_t nf = line.Atoi();
647 for (Int_t ii = 0; ii < nf; ii += 1) {
655 if (sfor.Atoi() == 0) {
658 freload =
new TF1(snom.Data(), line.Data());
664 Int_t np = line.Atoi();
669 toks = line.Tokenize(
" ");
671 ((TObjString*)toks->At(0))->GetString().Atof(),
672 ((TObjString*)toks->At(1))->GetString().Atof()
676 for (Int_t jj = 0; jj < freload->GetNpar(); jj += 1) {
678 toks = line.Tokenize(
" ");
679 freload->SetParameter(jj, ((TObjString*)toks->At(1))->GetString().Atof());
680 freload->SetParError(jj, ((TObjString*)toks->At(2))->GetString().Atof());
686 freload->Draw(
"same");
694 f2d.Form(
"%s::f2D", GetName());
697 while (line.BeginsWith(
"//")) line.ReadLine(fin);
699 Int_t nf = line.Atoi();
700 for (Int_t ii = 0; ii < nf; ii += 1) {
708 if (sfor.Atoi() == 0) {
711 freload =
new TF2(snom.Data(), line.Data());
717 Int_t np = line.Atoi();
722 toks = line.Tokenize(
" ");
724 ((TObjString*)toks->At(0))->GetString().Atof(),
725 ((TObjString*)toks->At(2))->GetString().Atof(),
726 ((TObjString*)toks->At(1))->GetString().Atof(),
727 ((TObjString*)toks->At(3))->GetString().Atof()
731 for (Int_t jj = 0; jj < freload->GetNpar(); jj += 1) {
733 toks = line.Tokenize(
" ");
734 freload->SetParameter(jj, ((TObjString*)toks->At(1))->GetString().Atof());
735 freload->SetParError(jj, ((TObjString*)toks->At(2))->GetString().Atof());
741 freload->Draw(
"cont2,same");
749 Info(
"Relecture",
"done");
762 return (gSystem->IsFileInIncludePath(name));
Manage SemiAutomatic Fits.
virtual Double_t f1D(Double_t *xx, Double_t *para)
userdefined = kTRUE;
KVHashList * lfunc
liste des fonctions de fit
Bool_t is2D
histogramme analyse herite de TH1 ou TH2
virtual void SetHisto(TH1 *hh)
virtual Double_t f2D(Double_t *xx, Double_t *para)
userdefined = kTRUE;
Bool_t XmaxSet
Indique que l intervalle du fit est defini.
Double_t Xmax
Borne en X du fit.
TF2 * f2Dfit
fonction de fit deux dimensions
TF1 * ReloadFunction(const Char_t *, Int_t)
virtual void SetHistos(KVHashList *lh, TString option="")
virtual void ExtraDrawing()
Double_t Ymax
Borne en Y du fit.
virtual ~KVAutoFit()
Destructor.
virtual TF1 * ReloadFunction_1D(const Char_t *, Int_t)
TH1 * hfit
histogramme analyse
void Clear(Option_t *opt="")
void Copy(TObject &) const
KVHashList * GetFunctions() const
void Print(Option_t *opt="") const
KVHashList * lplabel
contient la liste des TPaveLabel constituant le menu contextuel
Int_t nhisto
nombre d'histo traites
TCanvas * c1
Canvas ou est trace l histo a analyse.
virtual Bool_t NewFunction_2D()
virtual void Relecture(const Char_t *name)
virtual void HandleKey(Int_t)
TH1 * hclone
clone de histogramme analyse
virtual Bool_t NewFunction_1D()
Bool_t IsKnown(const Char_t *)
Bool_t fBatch
set if graphical objects are used or not
KVHashList * lhisto
liste des histos initialise via SetHistos method
TF1 * f1Dfit
fonction de fit une dimension
virtual TF1 * ReloadFunction_2D(const Char_t *, Int_t)
void ClearRange(void)
Efface les bornes min et max pour le prochain fit.
Base class for KaliVeda framework.
static const Char_t * gitCommit()
Returns last git commit of sources.
static const Char_t * gitBranch()
Returns git branch of sources.
virtual void Copy(TObject &) const
Make a copy of this object.
Extended version of ROOT THashList.
virtual void Clear(Option_t *option="")
virtual TObject * At(Int_t idx) const
virtual void Execute(const char *method, const char *params, Int_t *error=0)
virtual void Add(TObject *obj)