source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareTransport.h @ 386

Last change on this file since 386 was 386, checked in by lemeur, 11 years ago

amélioration fiabilité graphique

File size: 846 bytes
Line 
1#ifndef SOFTWARETRABSPORT_SEEN
2#define SOFTWARETRABSPORT_SEEN
3
4#include "abstractSoftware.h"
5
6class softwareTransport : public abstractSoftware
7{
8
9    protected :
10
11  bool  moments2FromTransport(string workingDir, string elLab, const nomdElements elem, beam2Moments& moments) const;
12
13 public : 
14    softwareTransport();
15    softwareTransport(string inputFileName, globalParameters* globals, dataManager* beamLine);
16
17  virtual ~softwareTransport() {;}
18  virtual bool createInputFile( particleBeam* beamBefore,unsigned int numeroDeb, unsigned int numeroFin, string workingDir);
19
20  virtual bool  execute(string workingDir);
21
22
23virtual bool buildBeamAfterElements(string workingDir);
24
25    inline string getColor() {
26        return "#c0ea8e";
27    }
28   
29    /* inline string getName() const { */
30    /*     return "transport"; */
31    /* } */
32
33};
34#endif
Note: See TracBrowser for help on using the repository browser.