00001 #ifndef SLOWCONTROLCHAMBER_HH 00002 #define SLOWCONTROLCHAMBER_HH 00003 00004 class SCParamChamber { 00005 00006 public: 00007 SCParam( float drift_voltage, float drift_current, mesh_voltage, mesh_current); 00008 00009 SCParamChamber(); 00010 ~SCParamChamber(); 00011 void print(); 00012 00013 public: 00014 float drift_voltage; 00015 float drift_current; 00016 float mesh_voltage; 00017 float mesh_current; 00018 }; 00019 00020 #endif 00021