source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareMadx.h @ 455

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

grosse modification pour intégrer les sections

File size: 562 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*);
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.