openModeller  Version 1.5.0
ScaledModel.cpp
Go to the documentation of this file.
1 
3 
6 
7 /*********************************************************************************
8  *
9  * ScaledModelImpl - Abstract base class for derived/stand-alone models
10  *
11  *********************************************************************************/
12 
14  ModelImpl(),
15  _normalizerPtr(0)
16 {}
17 
19  ModelImpl(),
20  _normalizerPtr( normalizerPtr )
21 { }
22 
24 { }
25 
26 void
28 {
29  sampl->normalize( _normalizerPtr );
30 }
31 
32 void
34 {
35  env->normalize( _normalizerPtr );
36 }
37 
virtual void setNormalization(const SamplerPtr &samp) const
Definition: ScaledModel.cpp:27
Normalizer * _normalizerPtr
Definition: ScaledModel.hh:34
virtual ~ScaledModelImpl()
Definition: ScaledModel.cpp:23