source: PSPA/Interface_Web/trunk/pspaWT/include/elementDrift.h @ 83

Last change on this file since 83 was 82, checked in by lemeur, 12 years ago

introduction element solenoid

File size: 640 bytes
Line 
1#ifndef DRIFTDEFINITION_SEEN
2#define DRIFTDEFINITION_SEEN
3#include <string>
4
5#include "abstractElement.h"
6
7using namespace std;
8
9class elementDrift : public abstractElement
10{
11
12
13 public:
14
15  elementDrift();
16
17
18  ~elementDrift() {;}
19
20  virtual string* getParametersString() const;
21
22  virtual void setParametersString(string* param);
23
24  virtual  string parmelaOutputFlow() const;
25
26virtual string transportOutputFlow() const
27  {
28    ostringstream sortie;
29    cout << " DRIFT sortie transport non programmee " << endl;
30    return sortie.str();
31  }
32
33
34  virtual string FileOutputFlow() const;
35
36  virtual void FileInput(ifstream& ifs);
37
38};
39
40
41
42#endif
Note: See TracBrowser for help on using the repository browser.