BOSS 7.0.5
BESIII Offline Software System
Loading...
Searching...
No Matches
InstallArea/include/TofSimSvc/TofSimSvc/ETofSim.h
Go to the documentation of this file.
1#ifndef ETOF_SIM_H
2#define ETOF_SIM_H
3
4class ETofSim{
5 public:
6 ETofSim() {}
8 public:
9 double getGain() const { return m_gain; }
10 double getAttenLength() const { return m_length; }
11 double getNoiseSmear() const { return m_noisesmear; }
12
13 public:
14 void setGain( double gain ) { m_gain = gain; }
15 void setAttenLength( double length ) { m_length = length; }
16 void setNoiseSmear( double noisesmear ) { m_noisesmear = noisesmear; }
17
18 private:
19 double m_gain;
20 double m_length;
21 double m_noisesmear;
22
23};
24
25#endif