// Author: Ingo Froehlich
// Written: 14/05/2007
// Modified: 
// PDebugFileOutput Class Header

#ifndef _PFILEDEBUGOUTPUT_H_
#define _PFILEDEBUGOUTPUT_H_

#include "PFileOutput.h"

class PDebugFileOutput: public PFileOutput {

 private:

 protected:
    FILE *fp;
    
 public:
    PDebugFileOutput();
    ~PDebugFileOutput();

    using PFileOutput::OpenFile;
    bool OpenFile(char *filename);       //filename
    bool CloseFile(void);                //
    bool WriteEvent(void);               //next event
    bool WriteParticle(PParticle *par);  //write one particle
    

ClassDef(PDebugFileOutput, 0) // Pluto debug file output

};

#endif 

















 PDebugFileOutput.h:1
 PDebugFileOutput.h:2
 PDebugFileOutput.h:3
 PDebugFileOutput.h:4
 PDebugFileOutput.h:5
 PDebugFileOutput.h:6
 PDebugFileOutput.h:7
 PDebugFileOutput.h:8
 PDebugFileOutput.h:9
 PDebugFileOutput.h:10
 PDebugFileOutput.h:11
 PDebugFileOutput.h:12
 PDebugFileOutput.h:13
 PDebugFileOutput.h:14
 PDebugFileOutput.h:15
 PDebugFileOutput.h:16
 PDebugFileOutput.h:17
 PDebugFileOutput.h:18
 PDebugFileOutput.h:19
 PDebugFileOutput.h:20
 PDebugFileOutput.h:21
 PDebugFileOutput.h:22
 PDebugFileOutput.h:23
 PDebugFileOutput.h:24
 PDebugFileOutput.h:25
 PDebugFileOutput.h:26
 PDebugFileOutput.h:27
 PDebugFileOutput.h:28
 PDebugFileOutput.h:29
 PDebugFileOutput.h:30
 PDebugFileOutput.h:31
 PDebugFileOutput.h:32
 PDebugFileOutput.h:33
 PDebugFileOutput.h:34
 PDebugFileOutput.h:35
 PDebugFileOutput.h:36
 PDebugFileOutput.h:37
 PDebugFileOutput.h:38
 PDebugFileOutput.h:39
 PDebugFileOutput.h:40
 PDebugFileOutput.h:41
 PDebugFileOutput.h:42
 PDebugFileOutput.h:43
 PDebugFileOutput.h:44
 PDebugFileOutput.h:45
 PDebugFileOutput.h:46
 PDebugFileOutput.h:47
 PDebugFileOutput.h:48
 PDebugFileOutput.h:49
 PDebugFileOutput.h:50