Logo ROOT  
Reference Guide
TTeXDump.h
Go to the documentation of this file.
1// @(#)root/postscript:$Id$
2// Author: Olivier Couet
3
4/*************************************************************************
5 * Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
6 * All rights reserved. *
7 * *
8 * For the licensing terms see $ROOTSYS/LICENSE. *
9 * For the list of contributors see $ROOTSYS/README/CREDITS. *
10 *************************************************************************/
11
12#ifndef ROOT_TTeXDump
13#define ROOT_TTeXDump
14
15
16#include "TVirtualPS.h"
17
18class TPoints;
19
20class TTeXDump : public TVirtualPS {
21
22protected:
23 Float_t fXsize; ///< Page size along X
24 Float_t fYsize; ///< Page size along Y
25 Int_t fType; ///< Workstation type used to know if the Tex is open
26 Bool_t fBoundingBox; ///< True when the Tex header is printed
27 Bool_t fRange; ///< True when a range has been defined
28 Float_t fCurrentRed; ///< Current Red component
29 Float_t fCurrentGreen; ///< Current Green component
30 Float_t fCurrentBlue; ///< Current Blue component
31 Float_t fCurrentAlpha; ///< Current Alpha value
32 Float_t fLineScale; ///< Line width scale factor
33
34
35public:
36 TTeXDump();
37 TTeXDump(const char *filename, Int_t type=-113);
38 virtual ~TTeXDump();
39
42 void CellArrayEnd();
43 void Close(Option_t *opt="");
44 Int_t CMtoTeX(Double_t u) {return Int_t(0.5 + 72*u/2.54);}
45 void DefineMarkers();
47 void DrawFrame(Double_t xl, Double_t yl, Double_t xt, Double_t yt,
48 Int_t mode, Int_t border, Int_t dark, Int_t light);
50 void DrawPolyLineNDC(Int_t n, TPoints *uv);
53 void DrawPS(Int_t n, Float_t *xw, Float_t *yw);
54 void DrawPS(Int_t n, Double_t *xw, Double_t *yw);
55 void NewPage();
56 void Off();
57 void On();
58 void Open(const char *filename, Int_t type=-111);
59 void Range(Float_t xrange, Float_t yrange);
60 void SetColor(Int_t color = 1);
62 void SetFillColor( Color_t cindex=1);
63 void SetLineColor( Color_t cindex=1);
64 void SetLineStyle(Style_t linestyle = 1);
65 void SetLineWidth(Width_t linewidth = 1);
66 void SetLineScale(Float_t scale=1) {fLineScale = scale;}
67 void SetMarkerSize( Size_t msize=1);
68 void SetMarkerColor( Color_t cindex=1);
69 void SetTextColor( Color_t cindex=1);
70 void Text(Double_t x, Double_t y, const char *string);
71 void Text(Double_t, Double_t, const wchar_t *){}
72 void TextNDC(Double_t u, Double_t v, const char *string);
73 void TextNDC(Double_t, Double_t, const wchar_t *){}
78
79 ClassDef(TTeXDump, 0); //Tex driver
80};
81
82#endif
ROOT::R::TRInterface & r
Definition: Object.C:4
#define b(i)
Definition: RSha256.hxx:100
#define g(i)
Definition: RSha256.hxx:105
static const double x2[5]
static const double x1[5]
int Int_t
Definition: RtypesCore.h:43
float Size_t
Definition: RtypesCore.h:85
short Width_t
Definition: RtypesCore.h:80
double Double_t
Definition: RtypesCore.h:57
short Color_t
Definition: RtypesCore.h:81
short Style_t
Definition: RtypesCore.h:78
float Float_t
Definition: RtypesCore.h:55
const char Option_t
Definition: RtypesCore.h:64
#define ClassDef(name, id)
Definition: Rtypes.h:322
int type
Definition: TGX11.cxx:120
XPoint xy[kMAXMK]
Definition: TGX11.cxx:122
2-D graphics point (world coordinates).
Definition: TPoints.h:19
Interface to TeX.
Definition: TTeXDump.h:20
void SetLineColor(Color_t cindex=1)
Set color index for lines.
Definition: TTeXDump.cxx:671
void Open(const char *filename, Int_t type=-111)
Open a TeX file.
Definition: TTeXDump.cxx:132
void DrawFrame(Double_t xl, Double_t yl, Double_t xt, Double_t yt, Int_t mode, Int_t border, Int_t dark, Int_t light)
Draw a Frame around a box.
Definition: TTeXDump.cxx:348
void Close(Option_t *opt="")
Close a TeX file.
Definition: TTeXDump.cxx:189
void SetLineScale(Float_t scale=1)
Definition: TTeXDump.h:66
void SetMarkerColor(Color_t cindex=1)
Set color index for markers.
Definition: TTeXDump.cxx:708
void DrawPolyLineNDC(Int_t n, TPoints *uv)
Draw a PolyLine in NDC space.
Definition: TTeXDump.cxx:379
void On()
Activate an already open TeX file.
Definition: TTeXDump.cxx:206
void Text(Double_t, Double_t, const wchar_t *)
Definition: TTeXDump.h:71
void DefineMarkers()
add additional pgfplotmarks
Definition: TTeXDump.cxx:914
Bool_t fBoundingBox
True when the Tex header is printed.
Definition: TTeXDump.h:26
Float_t fCurrentRed
Current Red component.
Definition: TTeXDump.h:28
Float_t fXsize
Page size along X.
Definition: TTeXDump.h:23
void SetLineWidth(Width_t linewidth=1)
Set the lines width.
Definition: TTeXDump.cxx:692
void CellArrayFill(Int_t r, Int_t g, Int_t b)
Paint the Cell Array.
Definition: TTeXDump.cxx:890
Float_t VtoTeX(Double_t v)
Convert V from NDC coordinate to TeX.
Definition: TTeXDump.cxx:854
void TextNDC(Double_t, Double_t, const wchar_t *)
Definition: TTeXDump.h:73
void SetMarkerSize(Size_t msize=1)
Set size for markers.
Definition: TTeXDump.cxx:700
Bool_t fRange
True when a range has been defined.
Definition: TTeXDump.h:27
void Range(Float_t xrange, Float_t yrange)
Set the range for the paper in centimetres.
Definition: TTeXDump.cxx:651
void CellArrayEnd()
End the Cell Array painting.
Definition: TTeXDump.cxx:898
void DrawPS(Int_t n, Float_t *xw, Float_t *yw)
Not needed in TeX case.
Definition: TTeXDump.cxx:906
Float_t fCurrentAlpha
Current Alpha value.
Definition: TTeXDump.h:31
virtual ~TTeXDump()
Default TeX destructor.
Definition: TTeXDump.cxx:181
void SetTextColor(Color_t cindex=1)
Set color index for text.
Definition: TTeXDump.cxx:757
Float_t fLineScale
Line width scale factor.
Definition: TTeXDump.h:32
void TextNDC(Double_t u, Double_t v, const char *string)
Write a string of characters in NDC.
Definition: TTeXDump.cxx:835
void CellArrayBegin(Int_t W, Int_t H, Double_t x1, Double_t x2, Double_t y1, Double_t y2)
Begin the Cell Array painting.
Definition: TTeXDump.cxx:881
Int_t fType
Workstation type used to know if the Tex is open.
Definition: TTeXDump.h:25
Int_t CMtoTeX(Double_t u)
Definition: TTeXDump.h:44
Float_t UtoTeX(Double_t u)
Convert U from NDC coordinate to TeX.
Definition: TTeXDump.cxx:845
void DrawBox(Double_t x1, Double_t y1, Double_t x2, Double_t y2)
Draw a Box.
Definition: TTeXDump.cxx:230
void DrawPolyMarker(Int_t n, Float_t *x, Float_t *y)
Paint PolyMarker.
Definition: TTeXDump.cxx:387
Float_t YtoTeX(Double_t y)
Convert Y from world coordinate to TeX.
Definition: TTeXDump.cxx:872
void DrawPolyLine(Int_t n, TPoints *xy)
Draw a PolyLine.
Definition: TTeXDump.cxx:364
void Text(Double_t x, Double_t y, const char *string)
Draw text.
Definition: TTeXDump.cxx:769
void SetFillColor(Color_t cindex=1)
Set color index for fill areas.
Definition: TTeXDump.cxx:662
void Off()
Deactivate an already open TeX file.
Definition: TTeXDump.cxx:222
TTeXDump()
Default TeX constructor.
Definition: TTeXDump.cxx:86
Float_t fCurrentGreen
Current Green component.
Definition: TTeXDump.h:29
Float_t fYsize
Page size along Y.
Definition: TTeXDump.h:24
void SetColor(Int_t color=1)
Set color with its color index.
Definition: TTeXDump.cxx:716
Float_t fCurrentBlue
Current Blue component.
Definition: TTeXDump.h:30
Float_t XtoTeX(Double_t x)
Convert X from world coordinate to TeX.
Definition: TTeXDump.cxx:863
void SetLineStyle(Style_t linestyle=1)
Change the line style.
Definition: TTeXDump.cxx:684
void NewPage()
Start the TeX page. This function starts the tikzpicture environment.
Definition: TTeXDump.cxx:630
TVirtualPS is an abstract interface to Postscript, PDF, SVG.
Definition: TVirtualPS.h:30
Double_t y[n]
Definition: legend1.C:17
Double_t x[n]
Definition: legend1.C:17
const Int_t n
Definition: legend1.C:16
#define H(x, y, z)