queso-0.50.1
UniformVectorRV.C
Go to the documentation of this file.
1 //-----------------------------------------------------------------------bl-
2 //--------------------------------------------------------------------------
3 //
4 // QUESO - a library to support the Quantification of Uncertainty
5 // for Estimation, Simulation and Optimization
6 //
7 // Copyright (C) 2008,2009,2010,2011,2012,2013 The PECOS Development Team
8 //
9 // This library is free software; you can redistribute it and/or
10 // modify it under the terms of the Version 2.1 GNU Lesser General
11 // Public License as published by the Free Software Foundation.
12 //
13 // This library is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
16 // Lesser General Public License for more details.
17 //
18 // You should have received a copy of the GNU Lesser General Public
19 // License along with this library; if not, write to the Free Software
20 // Foundation, Inc. 51 Franklin Street, Fifth Floor,
21 // Boston, MA 02110-1301 USA
22 //
23 //-----------------------------------------------------------------------el-
24 
25 #include <queso/UniformVectorRV.h>
26 #include <queso/GslVector.h>
27 #include <queso/GslMatrix.h>
28 
29 namespace QUESO {
30 
31 // Default constructor-------------------------------
32 template<class V, class M>
34  const char* prefix,
35  const VectorSet<V,M>& imageSet)
36  :
37  BaseVectorRV<V,M>(((std::string)(prefix)+"uni").c_str(),imageSet)
38 {
39  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 54)) {
40  *m_env.subDisplayFile() << "Entering UniformVectorRV<V,M>::constructor()"
41  << ": prefix = " << m_prefix
42  << std::endl;
43  }
44 
45  m_pdf = new UniformJointPdf<V,M>(m_prefix.c_str(),
46  m_imageSet);
48  m_imageSet);
49  m_subCdf = NULL; // FIX ME: complete code
50  m_unifiedCdf = NULL; // FIX ME: complete code
51  m_mdf = NULL; // FIX ME: complete code
52 
53  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 54)) {
54  *m_env.subDisplayFile() << "Leaving UniformVectorRV<V,M>::constructor()"
55  << ": prefix = " << m_prefix
56  << std::endl;
57  }
58 }
59 // Destructor ---------------------------------------
60 template<class V, class M>
62 {
63  delete m_mdf;
64  delete m_unifiedCdf;
65  delete m_subCdf;
66  delete m_realizer;
67  delete m_pdf;
68 }
69 // I/O methods --------------------------------------
70 template <class V, class M>
71 void
72 UniformVectorRV<V,M>::print(std::ostream& os) const
73 {
74  os << "UniformVectorRV<V,M>::print() says, 'Please implement me.'" << std::endl;
75  return;
76 }
77 
78 } // End namespace QUESO
79 
const BaseVectorCdf< V, M > * m_unifiedCdf
Definition: VectorRV.h:136
A templated base class for handling vector RV.
Definition: VectorRV.h:69
std::ofstream * subDisplayFile() const
Access function for m_subDisplayFile (displays file on stream).
Definition: Environment.C:305
const BaseEnvironment & m_env
Definition: VectorRV.h:130
const VectorSet< V, M > & m_imageSet
Definition: VectorRV.h:132
const BaseVectorCdf< V, M > * m_subCdf
Definition: VectorRV.h:135
BaseVectorRealizer< V, M > * m_realizer
Definition: VectorRV.h:134
UniformVectorRV(const char *prefix, const VectorSet< V, M > &imageSet)
Default constructor.
A templated class for handling sets.
Definition: VectorSet.h:49
void print(std::ostream &os) const
TODO: Prints the vector RV.
const BaseVectorMdf< V, M > * m_mdf
Definition: VectorRV.h:137
A class for handling uniform joint PDFs.
A class for handling sampling from a Uniform probability density distribution.
virtual ~UniformVectorRV()
Virtual destructor.
std::string m_prefix
Definition: VectorRV.h:131
BaseJointPdf< V, M > * m_pdf
Definition: VectorRV.h:133
unsigned int displayVerbosity() const
Definition: Environment.C:436
A class representing a uniform vector RV.

Generated on Thu Apr 23 2015 19:18:35 for queso-0.50.1 by  doxygen 1.8.5