ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/Style/src/HistStyle.cc
Revision: 1.2
Committed: Sun Oct 3 03:51:15 2010 UTC (14 years, 7 months ago) by paus
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +1 -1 lines
State: FILE REMOVED
Log Message:
Error in cvs use.

File Contents

# User Rev Content
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     }