source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareTest.h @ 347

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

Ameliorations pour la sauvegarde des fichiers et autres

File size: 945 bytes
Line 
1#ifndef  SOFTWARETEST_SEEN
2#define  SOFTWARETEST_SEEN
3//  Created by Guy Le Meur on 02/08/13.
4//  Copyright (c) 2013 Guy Le Meur. All rights reserved.
5
6#include "abstractSoftware.h"
7
8class softwareTest : public abstractSoftware
9{
10
11 protected : 
12
13  softwareTest();
14
15  bool beamToParin(string workingDir, particleBeam* beam );
16  bool beamFromParin(string workingDir, vector<bareParticle>& particles );
17
18 public :
19
20softwareTest(string inputFileName, globalParameters* globals, dataManager* );
21
22  virtual ~softwareTest() {;}
23
24
25  virtual bool createInputFile( particleBeam* beamBefore, unsigned int numeroDeb, unsigned int numeroFin, string workingDir);
26
27
28  virtual bool  execute(unsigned int numeroDeb,unsigned int numeroFin,string workingDir);
29
30
31  virtual bool buildBeamAfterElements(unsigned int numeroDeb,unsigned int numeroFin, vector<particleBeam>& beams, string workingDir);
32
33  inline string getColor() {
34      return "#ecc38e";
35  }
36};
37#endif
Note: See TracBrowser for help on using the repository browser.