source: trunk/MagicSoft/Mars/mhist/MH.cc@ 887

Last change on this file since 887 was 887, checked in by tbretz, 23 years ago
*** empty log message ***
File size: 471 bytes
Line 
1///////////////////////////////////////////////////////////////////////
2//
3// MHHillas
4//
5// This class contains histograms for every Hillas parameter
6//
7///////////////////////////////////////////////////////////////////////
8
9#include "MH.h"
10
11ClassImp(MH);
12
13MH::MH(const char *name, const char *title)
14{
15 //
16 // set the name and title of this object
17 //
18 *fName = name ? name : "MH" ;
19 *fTitle = title ? title : "Base class for Mars histograms" ;
20}
21
Note: See TracBrowser for help on using the repository browser.