]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/Pad.h
Adapt to new QuadSet implementation.
[u/mrichter/AliRoot.git] / EVE / Reve / Pad.h
CommitLineData
5a5a1232 1// $Header$
2
3#ifndef REVE_Pad_H
4#define REVE_Pad_H
5
6#include <Reve/Reve.h>
7
8#include <TPad.h>
9
10namespace Reve {
11
12class Pad : public TPad
13{
14public:
15 Pad();
16 Pad(const char* name, const char* title,
17 Double_t xlow, Double_t ylow, Double_t xup, Double_t yup,
18 Color_t color = -1, Short_t bordersize = -1, Short_t bordermode = -2);
19 virtual ~Pad() {}
20
21 ClassDef(Pad, 1); // Wrapper for TPad
22};
23
24}
25
26#endif