source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareMadx.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: 576 bytes
Line 
1#ifndef SOFTWAREMADX_SEEN
2#define SOFTWAREMADX_SEEN
3
4#include "abstractSoftware.h"
5
6typedef pair<string, vector<string> > statements;
7
8class softwareMadx : public abstractSoftware
9{
10  string inputFormat(const vector<statements>&) const;
11
12 public :
13 
14  softwareMadx();
15  softwareMadx(string,sectionToExecute*, dataManager*);
16  virtual ~softwareMadx() {;}
17
18  virtual bool createInputFile(particleBeam*, string);
19  virtual bool execute(string);
20  virtual bool buildBeamAfterElements(string);
21 
22  inline string getColor() {return "#ecc38e";}
23  //{ return "#FFFF00"; }
24};
25#endif
Note: See TracBrowser for help on using the repository browser.