source: PSPA/Interface_Web/trunk/pspaWT/sources/controler/include/softwareUnknown.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: 427 bytes
Line 
1#ifndef SOFTWAREUNKNOWN_SEEN
2#define SOFTWAREUNKNOWN_SEEN
3
4#include "abstractSoftware.h"
5
6class softwareUnknown : public abstractSoftware
7{
8 public :
9 
10  softwareUnknown();
11  virtual ~softwareUnknown() {;}
12
13  virtual bool createInputFile(particleBeam*,unsigned int,unsigned int,string);
14  virtual bool execute(string);
15  virtual bool buildBeamAfterElements(string);
16 
17  inline string getColor() {return "#FFFFFF";}
18};
19#endif
Note: See TracBrowser for help on using the repository browser.