]> git.uio.no Git - u/mrichter/AliRoot.git/blob - TGeant4/TG4GeometryOutputManager.h
This commit was generated by cvs2svn to compensate for changes in r1461,
[u/mrichter/AliRoot.git] / TGeant4 / TG4GeometryOutputManager.h
1 // $Id$
2 // Category: geometry
3 //
4 // This class provides methods for writing
5 // tokens (ASCII form of Geant3 routines calls)
6 // into the specified output file
7
8 #ifndef TG4_GEOMETRY_OUTPUT_MANAGER_H
9 #define TG4_GEOMETRY_OUTPUT_MANAGER_H
10
11 #include "TG4Globals.h"
12
13 #include <globals.hh>
14
15 //#include <fstream.h>
16 #include "g4std/fstream"
17
18 class TG4GeometryOutputManager
19 {
20   public:
21     TG4GeometryOutputManager();
22     virtual ~TG4GeometryOutputManager();
23
24     // methods
25     void OpenFile(G4String filePath);
26     void CloseFile();
27
28     void WriteGsvolu(G4String name, G4String shape, G4int nmed, G4double* par,
29               G4int npar);
30
31     void WriteGspos(G4String name, G4int num, G4String moth, G4double x,
32               G4double y, G4double z, G4int irot, G4String only);
33
34     void WriteGsposp(G4String name, G4int num, G4String moth, G4double x,
35               G4double y, G4double z, G4int irot, G4String only,
36               G4double* Rpar, G4int npar);
37
38     void WriteGsrotm(G4int irot, G4double theta1, G4double phi1,
39               G4double theta2, G4double phi2, G4double theta3, G4double phi3);
40
41     //void WriteGsatt(G4String name, G4String attr, G4int ival);
42
43     void WriteGsdvn(G4String vname, G4String vmoth, G4int ndiv, G4int iaxis);
44
45     void WriteGsdvt(G4String name, G4String moth, G4double Step, G4int iaxis,
46               G4int numed, G4int ndvmx);
47
48     void WriteGsdvx(G4String name, G4String moth, G4int ndiv, G4int iaxis,
49               G4double Step, G4double c0, G4int numed, G4int ndvmx);
50
51     void WriteGsdvn2(G4String name, G4String moth, G4int ndiv, G4int iaxis,
52               G4double c0, G4int numed);
53
54     void WriteGsdvt2(G4String name, G4String moth, G4double Step, G4int iaxis,
55               G4double c0, G4int numed, G4int ndvmx);
56
57     void WriteGsmate(G4int imate, G4String name, G4double a, G4double z,
58               G4double dens, G4double radl, G4int nwbf, G4double* ubuf);
59
60     void WriteGsmixt(G4int imate, G4String name, G4double* a, G4double* z,
61               G4double dens, G4int nlmat, G4double* wmat);
62
63     void WriteGstmed(G4int itmed, G4String name, G4int nmat, G4int isvol,
64               G4int ifield, G4double fieldm, G4double tmaxfd,
65               G4double stemax, G4double deemax, G4double epsil,
66               G4double stmin, G4double* par, G4int npar);
67
68     void WriteGstpar(G4int itmed, G4String par, G4double parval);
69
70     void WriteGgclos();
71
72   private:
73     // data members
74     G4std::ofstream  fOutFile; //output file
75 };
76
77 #endif //TG4_GEOMETRY_OUTPUT_MANAGER_H
78