source: PSPA/Interface_Web/trunk/pspaWT/include/elementSoleno.h @ 152

Last change on this file since 152 was 84, checked in by lemeur, 12 years ago

execution complete de transport

File size: 727 bytes
Line 
1#ifndef SOLEDEFINITION_SEEN
2#define SOLEDEFINITION_SEEN
3
4#include <iostream>
5#include <string>
6#include "abstractElement.h"
7
8//#include "mathematicalTools.h"
9//#include "PhysicalConstants.h"
10 
11using namespace std;
12class elementSoleno : public abstractElement
13{
14
15  double B0_;   // en kilogauss
16  double B0Def_;   // en kilogauss
17
18
19
20
21  void setDefaultValues();
22  void setDefaults();
23
24
25 
26 public :
27
28  elementSoleno(); 
29
30  ~elementSoleno() {;}
31
32 virtual void setParametersString(string* param);
33
34 virtual string* getParametersString() const;
35
36 virtual  string parmelaOutputFlow() const;
37
38 virtual string transportOutputFlow() const;
39
40 virtual  string FileOutputFlow() const;
41
42 virtual void FileInput(ifstream& ifs);
43
44};
45#endif
Note: See TracBrowser for help on using the repository browser.