Logo ROOT   6.14/05
Reference Guide
FirstContour.C
Go to the documentation of this file.
1 /// \file
2 /// \ingroup tutorial_hist
3 /// \notebook
4 /// Make a contour plot and get the first contour in a TPolyMarker.
5 /// This macro generates a color contour plot by selecting entries
6 /// from an ntuple file.
7 /// The TGraph object corresponding to the first contour line is
8 /// accessed and displayed into a separate canvas.
9 ///
10 /// \macro_code
11 ///
12 /// \author Rene Brun
13 
14 void FirstContour()
15 {
16  TString dir = gROOT->GetTutorialDir();
17  dir.Append("/hsimple.C");
18  dir.ReplaceAll("/./","/");
19  if (!gInterpreter->IsLoaded(dir.Data())) gInterpreter->LoadMacro(dir.Data());
20  TFile *file = (TFile*)gROOT->ProcessLineFast("hsimple(1)");
21  if (!file) return;
22  TTree *ntuple = (TTree*)file->Get("ntuple");
23 
24  TCanvas *c1 = new TCanvas("c1","Contours",10,10,800,600);
25  ntuple->Draw("py:px","px*px+py*py < 20", "contz,list");
26 
27  //we must call Update to force the canvas to be painted. When
28  //painting the contour plot, the list of contours is generated
29  //and a reference to it added to the Root list of special objects
30  c1->Update();
31 
32  TCanvas *c2 = new TCanvas("c2","First contour",100,100,800,600);
33 
34 
35  TObjArray *contours =
36  (TObjArray*)gROOT->GetListOfSpecials()->FindObject("contours");
37  if (!contours) return;
38  TList *lcontour1 = (TList*)contours->At(0);
39  if (!lcontour1) return;
40  TGraph *gc1 = (TGraph*)lcontour1->First();
41  if (!gc1) return;
42  if (gc1->GetN() < 10) return;
43  gc1->SetMarkerStyle(21);
44  gc1->Draw("alp");
45 
46  //We make a TCutG object with the array obtained from this graph
47  TCutG *cutg = new TCutG("cutg",gc1->GetN(),gc1->GetX(),gc1->GetY());
48 
49  //We create a polymarker object with npmax points.
50  const Int_t npmax = 50000;
51  TPolyMarker *pm = new TPolyMarker(npmax);
52  Int_t np = 0;
53  while(1) {
54  Double_t x = -4 +8*gRandom->Rndm();
55  Double_t y = -4 +8*gRandom->Rndm();
56  if (cutg->IsInside(x,y)) {
57  pm->SetPoint(np,x,y);
58  np++;
59  if (np == npmax) break;
60  }
61  }
62  pm->Draw();
63 }
virtual void Draw(Option_t *option="")
Draw.
An array of TObjects.
Definition: TObjArray.h:37
return c1
Definition: legend1.C:41
TString & ReplaceAll(const TString &s1, const TString &s2)
Definition: TString.h:687
A ROOT file is a suite of consecutive data records (TKey instances) with a well defined format...
Definition: TFile.h:47
virtual TObject * Get(const char *namecycle)
Return pointer to object identified by namecycle.
#define gROOT
Definition: TROOT.h:410
Basic string class.
Definition: TString.h:131
int Int_t
Definition: RtypesCore.h:41
#define gInterpreter
Definition: TInterpreter.h:527
TObject * At(Int_t idx) const
Definition: TObjArray.h:165
virtual void Draw(Option_t *chopt="")
Draw this graph with its current attributes.
Definition: TGraph.cxx:745
Graphical cut class.
Definition: TCutG.h:20
Double_t x[n]
Definition: legend1.C:17
TString & Append(const char *cs)
Definition: TString.h:559
A doubly linked list.
Definition: TList.h:44
virtual Double_t Rndm()
Machine independent random number generator.
Definition: TRandom.cxx:533
virtual TObject * First() const
Return the first object in the list. Returns 0 when list is empty.
Definition: TList.cxx:655
Int_t GetN() const
Definition: TGraph.h:122
virtual void SetMarkerStyle(Style_t mstyle=1)
Set the marker style.
Definition: TAttMarker.h:40
R__EXTERN TRandom * gRandom
Definition: TRandom.h:62
virtual void SetPoint(Int_t point, Double_t x, Double_t y)
Set point number n.
Double_t * GetX() const
Definition: TGraph.h:129
The Canvas class.
Definition: TCanvas.h:31
A PolyMarker is defined by an array on N points in a 2-D space.
Definition: TPolyMarker.h:31
return c2
Definition: legend2.C:14
double Double_t
Definition: RtypesCore.h:55
virtual void Draw(Option_t *opt)
Default Draw method for all objects.
Definition: TTree.h:357
Double_t y[n]
Definition: legend1.C:17
Double_t * GetY() const
Definition: TGraph.h:130
Definition: file.py:1
A Graph is a graphics object made of two arrays X and Y with npoints each.
Definition: TGraph.h:41
A TTree object has a header with a name and a title.
Definition: TTree.h:70
virtual Int_t IsInside(Double_t x, Double_t y) const
Return 1 if the point (x,y) is inside the polygon defined by the graph vertices 0 otherwise...
Definition: TGraph.cxx:1823
virtual void Update()
Update canvas pad buffers.
Definition: TCanvas.cxx:2248
const char * Data() const
Definition: TString.h:364