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

Last change on this file since 431 was 431, checked in by touze, 11 years ago

systeme periodique (mailles) + multipoles + madx

File size: 600 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,sectorParameters*,dataManager*);
16  virtual ~softwareMadx() {;}
17
18  virtual bool createInputFile(particleBeam*,unsigned int,unsigned int,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.