ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Style/src/HistStyle.cc
Revision: 1.1
Committed: Sun Oct 3 03:40:01 2010 UTC (14 years, 7 months ago) by paus
Content type: text/plain
Branch: MAIN
Log Message:
Draft version of MitPlots (enables analysis plot making.)

File Contents

# User Rev Content
1 paus 1.1 // $Id: $
2    
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     }