1 |
paus |
1.2 |
// $Id: HistStyle.cc,v 1.1 2010/10/03 03:40:01 paus Exp $
|
2 |
paus |
1.1 |
|
3 |
|
|
#include "MitPlots/Style/interface/HistStyle.h"
|
4 |
|
|
|
5 |
|
|
ClassImp(mithep::HistStyle)
|
6 |
|
|
|
7 |
|
|
using namespace std;
|
8 |
|
|
using namespace mithep;
|
9 |
|
|
|
10 |
|
|
//--------------------------------------------------------------------------------------------------
|
11 |
|
|
HistStyle::HistStyle() :
|
12 |
|
|
fColor (1),
|
13 |
|
|
fLineWidth (2.0),
|
14 |
|
|
fFillStyle (0),
|
15 |
|
|
fMarkerType(20),
|
16 |
|
|
fMarkerSize(0.6)
|
17 |
|
|
{
|
18 |
|
|
// Constructor
|
19 |
|
|
}
|
20 |
|
|
|
21 |
|
|
void HistStyle::Show() const
|
22 |
|
|
{
|
23 |
|
|
// Show information of this histogram style
|
24 |
|
|
printf(" %3d %3.1f %6d %6d %3.1f\n",fColor,fLineWidth,fFillStyle,fMarkerType,fMarkerSize);
|
25 |
|
|
}
|