Ignore:
Timestamp:
10/04/03 12:47:13 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfileio
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mfileio/MReadCurrents.cc

    r2206 r2377  
    2424
    2525/////////////////////////////////////////////////////////////////////////////
    26 //                                                                         //
    27 // MReadCurrents                                                         //
    28 //                                                                         //
    29 //  Input Containers:                                                      //
    30 //   -/-                                                                   //
    31 //                                                                         //
    32 //  Output Containers:                                                     //
    33 //   MCerPhotEvt                                                           //
    34 //                                                                         //
     26//
     27// MReadCurrents
     28//
     29//  Input Containers:
     30//   -/-
     31//
     32//  Output Containers:
     33//   MCerPhotEvt
     34//
    3535/////////////////////////////////////////////////////////////////////////////
    3636#include "MReadCurrents.h"
     
    6363                             const char *name,
    6464                             const char *title)
    65     : fIn(NULL)
     65    : fIn(NULL), fNumPixel(577)
    6666{
    6767    fName  = name  ? name  : "MReadCurrents";
     
    225225    fTime->SetTime(h, m, s, ms*1000000);
    226226
    227     for (int i=0; i<577; i++)
     227    for (int i=0; i<fNumPixel; i++)
    228228        *fIn >> (*fCurrents)[i];
    229229
  • trunk/MagicSoft/Mars/mfileio/MReadCurrents.h

    r2206 r2377  
    1818    TList     *fFileNames;   // Array which stores the \0-terminated filenames
    1919
     20    Int_t      fNumPixel;
     21
    2022    Bool_t OpenNextFile();
    2123
     
    3234    Int_t Process();
    3335
     36    void SetNumPixel(Int_t i) { fNumPixel=i; }
     37
    3438    ClassDef(MReadCurrents, 0)  // Reads a Central Control currents file
    3539};
  • trunk/MagicSoft/Mars/mfileio/MWriteRootFile.cc

    r2173 r2377  
    9696    //fTrees.SetOwner();
    9797
     98    TString str(fname);
     99    if (!str.EndsWith(".root", TString::kIgnoreCase))
     100        str += ".root";
     101
    98102    //
    99103    // Open the rootfile
    100104    //
    101     fOut = new TFile(fname, opt, ftitle, comp);
     105    fOut = new TFile(str, opt, ftitle, comp);
    102106}
    103107
Note: See TracChangeset for help on using the changeset viewer.