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

Last change on this file since 493 was 493, checked in by lemeur, 10 years ago

refection generale des secteurs et applications de softwares (suite)

File size: 940 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  bool beamToParin(string workingDir, particleBeam* beam );
14  bool beamFromParin(string workingDir, vector<bareParticle>& particles );
15
16 public :
17
18    softwareTest();
19   
20    //    softwareTest(string inputFileName, sectionToExecute*, dataManager*);
21    softwareTest(string inputFileName, computingBlock*, dataManager*);
22
23  virtual ~softwareTest() {;}
24
25
26  virtual bool createInputFile( particleBeam* beamBefore, string workingDir);
27
28
29  virtual bool  execute(string workingDir);
30
31
32  virtual bool buildBeamAfterElements(string workingDir);
33
34  inline string getColor() {
35      return "#ecc38e";
36  }
37   
38  /* inline string getName() const { */
39  /*       return "test"; */
40  /*   } */
41
42};
43#endif
Note: See TracBrowser for help on using the repository browser.