- Timestamp:
- 01/30/04 15:12:45 (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/MagicSoft/Simulation/Detector/include-MLons/MLons.cxx
r2450 r2987 12 12 13 13 fFadcShape = 0.0; 14 f AmplFadc = 1.0;14 fIntegFadc = 1.0; 15 15 fFwhmFadc = 2.0; 16 16 … … 21 21 22 22 MLons::MLons(Float_t in_amplT, Float_t in_FwhmT, 23 Float_t in_ amplF, Float_t in_FwhmF){23 Float_t in_integF, Float_t in_FwhmF){ 24 24 //-------------------------------------------------------------------- 25 25 // … … 32 32 33 33 fFadcShape = 0.0; 34 f AmplFadc = in_amplF;34 fIntegFadc = in_integF; 35 35 fFwhmFadc = in_FwhmF; 36 36 … … 50 50 51 51 fFadcShape = 0. ; 52 f AmplFadc = 0. ;52 fIntegFadc = 0. ; 53 53 fFwhmFadc = 0. ; 54 54 … … 83 83 84 84 85 Float_t MLons::Get AmplFadc ()86 { 87 return f AmplFadc ;88 } 89 90 void MLons::Set AmplFadc (Float_t in )91 { 92 f AmplFadc = in ;85 Float_t MLons::GetIntegFadc () 86 { 87 return fIntegFadc ; 88 } 89 90 void MLons::SetIntegFadc (Float_t in ) 91 { 92 fIntegFadc = in ; 93 93 } 94 94 … … 133 133 // 134 134 135 if ( f AmplFadc == MSLStored.GetAmplFadc() &&135 if ( fIntegFadc == MSLStored.GetIntegFadc() && 136 136 fFwhmFadc == MSLStored.GetFwhmFadc()) 137 137 return 1;
Note:
See TracChangeset
for help on using the changeset viewer.