source: trunk/MagicSoft/Mars/mbase/MInputStreamID.cc@ 457

Last change on this file since 457 was 454, checked in by harald, 24 years ago
Import the first sources of the MAGIC Analysis and Reconstruction Software. T. Bretz and H. Kornmayer 20.December 2000
File size: 367 bytes
Line 
1#include "MInputStreamID.h"
2
3ClassImp(MInputStreamID);
4
5// ---------------------------------------------------------------------
6
7MInputStreamID::MInputStreamID(const char *name, const char *title)
8{
9 //
10 // (default) constructor
11 //
12 *fName = name ? name : ClassName();
13 *fTitle = title;
14
15 fStreamId = new char[4];
16 strcpy(fStreamId, "All");
17}
18
Note: See TracBrowser for help on using the repository browser.