source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareUsersprogram.h @ 472

Last change on this file since 472 was 472, checked in by garnier, 11 years ago

Modification pour remettre en marche le Run. Desormais Transport passe, mais aucun test ne permet de dire si c est bon

File size: 640 bytes
Line 
1#ifndef SOFTWAREUSERSPROGRAM_SEEN
2#define SOFTWAREUSERSPROGRAM_SEEN
3
4#include "abstractSoftware.h"
5
6class softwareUsersprogram : public abstractSoftware
7{
8
9    protected :
10
11  string nomProgram_;
12  string outputFileName_;
13 public : 
14    softwareUsersprogram();
15    softwareUsersprogram(string inputFileName, sectionToExecute*, dataManager*);
16
17  virtual ~softwareUsersprogram() {;}
18  virtual bool createInputFile( particleBeam* beamBefore, string workingDir);
19
20  virtual bool  execute(string workingDir);
21
22
23virtual bool buildBeamAfterElements(string workingDir);
24
25    inline string getColor() {
26        return "#4e4747";
27    }
28   
29};
30#endif
Note: See TracBrowser for help on using the repository browser.