Ignore:
Timestamp:
03/08/06 10:17:07 (19 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mraw
Files:
3 edited

Legend:

Unmodified
Added
Removed
  • trunk/MagicSoft/Mars/mraw/MRawFileRead.cc

    r7438 r7579  
    102102//
    103103MRawFileRead::MRawFileRead(const char *fname, const char *name, const char *title)
    104     : fFileNames(NULL), fNumFile(0), fIn(NULL), fParList(NULL), fInterleave(1)
     104    : fFileNames(NULL), fNumFile(0), fIn(NULL), fParList(NULL), fInterleave(1), fForce(kFALSE)
    105105{
    106106    fName  = name  ? name  : "MRead";
     
    220220    //
    221221    if (!fRawRunHeader->ReadEvt(*fIn))
    222         return kERROR;
     222        if (!fForce)
     223            return kERROR;
    223224
    224225    if (!(*fIn))
  • trunk/MagicSoft/Mars/mraw/MRawFileRead.h

    r7438 r7579  
    2424    UInt_t    fInterleave;
    2525
     26    Bool_t    fForce;
     27
    2628    Int_t  OpenNextFile(Bool_t print=kTRUE);
    2729    Bool_t CalcNumTotalEvents();
     
    3840
    3941    void SetInterleave(UInt_t i) { fInterleave = i; }
     42    void SetForce(Bool_t b=kTRUE) { fForce=b; }
    4043
    4144    TString GetFullFileName() const;
  • trunk/MagicSoft/Mars/mraw/MRawRunHeader.cc

    r7489 r7579  
    362362        return;
    363363
    364     *fLog << inf << hex;
     364    *fLog << inf << "Assignment:" << hex << endl;
    365365    for (int i=0; i<GetNumPixel(); i++)
    366366        *fLog << setfill('0') << setw(3) << (*fPixAssignment)[i] << " ";
Note: See TracChangeset for help on using the changeset viewer.