]> git.uio.no Git - u/mrichter/AliRoot.git/blame - EVE/Reve/Line.cxx
Separate import of standard macros into a special function so that
[u/mrichter/AliRoot.git] / EVE / Reve / Line.cxx
CommitLineData
6f04ebee 1// $Header$
2
3#include "Line.h"
4
5using namespace Reve;
6
7//______________________________________________________________________
8// Line
9//
10
11ClassImp(Line)
12
13
14Line::Line(Int_t n_points, TreeVarType_e tv_type) :
15 PointSet(n_points, tv_type),
16 fRnrLine (kTRUE),
17 fRnrPoints (kFALSE)
18{
19 fMainColorPtr = &fLineColor;
20}
21
22Line::Line(const Text_t* name, Int_t n_points, TreeVarType_e tv_type) :
23 PointSet(name, n_points, tv_type),
24 fRnrLine (kTRUE),
25 fRnrPoints (kFALSE)
26{
27 fMainColorPtr = &fLineColor;
28}
29
6f04ebee 30Line::~Line()
31{}