Ignore:
Timestamp:
06/23/03 11:01:53 (21 years ago)
Author:
tbretz
Message:
*** empty log message ***
Location:
trunk/MagicSoft/Mars/mfileio
Files:
14 edited

Legend:

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

    r2173 r2206  
    156156// Initialize the size of the MPedestalCam container to 127 pixels (CT1 camera)
    157157//
    158 Bool_t MCT1ReadAscii::PreProcess(MParList *pList)
     158Int_t MCT1ReadAscii::PreProcess(MParList *pList)
    159159{
    160160    //
     
    264264// there is now next file stop the eventloop.
    265265//
    266 Bool_t MCT1ReadAscii::Process()
     266Int_t MCT1ReadAscii::Process()
    267267{
    268268    //
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadAscii.h

    r1880 r2206  
    2323    void ReadData();
    2424
     25    Int_t PreProcess(MParList *pList);
     26    Int_t Process();
     27
    2528public:
    2629    MCT1ReadAscii(const char *filename=NULL,
     
    3235    Int_t AddFile(const char *fname, Int_t dummy=-1);
    3336
    34     Bool_t PreProcess(MParList *pList);
    35     Bool_t Process();
    36 
    3737    ClassDef(MCT1ReadAscii, 0)  // Reads the CT1 data file
    3838};
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.cc

    r2173 r2206  
    730730// Initialize the size of the MPedestalCam container to 127 pixels (CT1 camera)
    731731//
    732 Bool_t MCT1ReadPreProc::PreProcess(MParList *pList)
     732Int_t MCT1ReadPreProc::PreProcess(MParList *pList)
    733733{
    734734    fParList = pList;
     
    10911091// there is now next file stop the eventloop.
    10921092//
    1093 Bool_t MCT1ReadPreProc::Process()
     1093Int_t MCT1ReadPreProc::Process()
    10941094{
    10951095    //
     
    11521152}
    11531153
    1154 Bool_t MCT1ReadPreProc::PostProcess()
     1154Int_t MCT1ReadPreProc::PostProcess()
    11551155{
    11561156    *fLog << all;
  • trunk/MagicSoft/Mars/mfileio/MCT1ReadPreProc.h

    r2152 r2206  
    7979    Double_t DiscreteTheta(Double_t theta);
    8080
    81     Bool_t PreProcess(MParList *pList);
    82     Bool_t Process();
    83     Bool_t PostProcess();
     81    Int_t PreProcess(MParList *pList);
     82    Int_t Process();
     83    Int_t PostProcess();
    8484
    8585    Bool_t Rewind();
  • trunk/MagicSoft/Mars/mfileio/MReadCurrents.cc

    r2173 r2206  
    151151// Initialize the size of the MPedestalCam container to 127 pixels (CT1 camera)
    152152//
    153 Bool_t MReadCurrents::PreProcess(MParList *pList)
     153Int_t MReadCurrents::PreProcess(MParList *pList)
    154154{
    155155    //
     
    190190// there is now next file stop the eventloop.
    191191//
    192 Bool_t MReadCurrents::Process()
     192Int_t MReadCurrents::Process()
    193193{
    194194    //
  • trunk/MagicSoft/Mars/mfileio/MReadCurrents.h

    r2148 r2206  
    2929    Int_t AddFile(const char *fname, Int_t dummy=-1);
    3030
    31     Bool_t PreProcess(MParList *pList);
    32     Bool_t Process();
     31    Int_t PreProcess(MParList *pList);
     32    Int_t Process();
    3333
    3434    ClassDef(MReadCurrents, 0)  // Reads a Central Control currents file
  • trunk/MagicSoft/Mars/mfileio/MReadMarsFile.cc

    r2173 r2206  
    199199//  see MReadTree::PreProcess for more information
    200200//
    201 Bool_t MReadMarsFile::PreProcess(MParList *pList)
     201Int_t MReadMarsFile::PreProcess(MParList *pList)
    202202{
    203203    fParList = pList;
  • trunk/MagicSoft/Mars/mfileio/MReadMarsFile.h

    r2117 r2206  
    1717    Bool_t Notify();
    1818
    19     Bool_t PreProcess(MParList *pList);
     19    Int_t PreProcess(MParList *pList);
    2020 
    2121public:
  • trunk/MagicSoft/Mars/mfileio/MReadRflFile.cc

    r2173 r2206  
    4242#include "MRflEvtHeader.h"
    4343#include "MRflRunHeader.h"
     44#include "MRflSinglePhoton.h"
    4445
    4546#include "MLog.h"
     
    219220}
    220221
    221 Bool_t MReadRflFile::Process()
     222Int_t MReadRflFile::Process()
    222223{
    223224    for (;;)
     
    248249}
    249250
    250 Bool_t MReadRflFile::PreProcess(MParList *plist)
     251Int_t MReadRflFile::PreProcess(MParList *plist)
    251252{
    252253    fEvtData=(MRflEvtData*)plist->FindCreateObj("MRflEvtData");
  • trunk/MagicSoft/Mars/mfileio/MReadRflFile.h

    r2136 r2206  
    3838    Bool_t OpenNextFile();
    3939
    40     Bool_t PreProcess(MParList *pList);
    41     Bool_t Process();
     40    Int_t PreProcess(MParList *pList);
     41    Int_t Process();
    4242
    4343public:
  • trunk/MagicSoft/Mars/mfileio/MReadTree.cc

    r2173 r2206  
    572572//  MReadTree::PreProcess
    573573//
    574 Bool_t MReadTree::PreProcess(MParList *pList)
     574Int_t MReadTree::PreProcess(MParList *pList)
    575575{
    576576    //
     
    755755#include "MRawEvtData.h"
    756756#endif
    757 Bool_t MReadTree::Process()
     757Int_t MReadTree::Process()
    758758{
    759759    //
     
    816816//  If a selector is given the selector is post processed
    817817//
    818 Bool_t MReadTree::PostProcess()
     818Int_t MReadTree::PostProcess()
    819819{
    820820    return GetSelector() ? GetSelector()->CallPostProcess() : kTRUE;
  • trunk/MagicSoft/Mars/mfileio/MReadTree.h

    r2123 r2206  
    6868    virtual Int_t AddFiles(const MReadTree &read);
    6969
    70     Bool_t PreProcess(MParList *pList);
    71     Bool_t Process();
    72     Bool_t PostProcess();
     70    Int_t PreProcess(MParList *pList);
     71    Int_t Process();
     72    Int_t PostProcess();
    7373
    7474    Bool_t Notify();
  • trunk/MagicSoft/Mars/mfileio/MWriteFile.cc

    r2173 r2206  
    5757// to the output file.
    5858//
    59 Bool_t MWriteFile::PreProcess(MParList *pList)
     59Int_t MWriteFile::PreProcess(MParList *pList)
    6060{
    6161    //
     
    8989// the container should be written to the output.
    9090//
    91 Bool_t MWriteFile::Process()
     91Int_t MWriteFile::Process()
    9292{
    9393    CheckAndWrite();
    94 
    9594    return kTRUE;
    9695}
     
    101100// the container should be written to the output.
    102101//
    103 Bool_t MWriteFile::PostProcess()
     102Int_t MWriteFile::PostProcess()
    104103{
    105104    //
     
    107106    //
    108107    CheckAndWrite();
    109 
    110108    return kTRUE;
    111109}
  • trunk/MagicSoft/Mars/mfileio/MWriteFile.h

    r1381 r2206  
    99{
    1010private:
    11     Bool_t PreProcess(MParList *pList);
    12     Bool_t Process();
    13     Bool_t PostProcess();
     11    Int_t PreProcess(MParList *pList);
     12    Int_t Process();
     13    Int_t PostProcess();
    1414
    1515    virtual Bool_t      IsFileOpen() const = 0;
Note: See TracChangeset for help on using the changeset viewer.