queso-0.51.1
WignerVectorRealizer.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/WignerVectorRealizer.h>
26 #include <queso/GslVector.h>
27 #include <queso/GslMatrix.h>
28 
29 namespace QUESO {
30 
31 // Constructor -------------------------------------
32 template<class V, class M>
34  const char* prefix,
35  const VectorSet<V,M>& unifiedImageSet,
36  const V& centerPos,
37  double radius)
38  :
39  BaseVectorRealizer<V,M>(((std::string)(prefix)+"gen").c_str(),unifiedImageSet,std::numeric_limits<unsigned int>::max()),
40  m_centerPos(new V(centerPos)),
41  m_radius (radius)
42 {
43  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 5)) {
44  *m_env.subDisplayFile() << "Entering WignerVectorRealizer<V,M>::constructor()"
45  << ": prefix = " << m_prefix
46  << std::endl;
47  }
48 
50  m_env.worldRank(),
51  "WignerVectorRealizer<V,M>::constructor()",
52  "invalid radius");
53 
54  if ((m_env.subDisplayFile()) && (m_env.displayVerbosity() >= 5)) {
55  *m_env.subDisplayFile() << "Leaving WignerVectorRealizer<V,M>::constructor()"
56  << ": prefix = " << m_prefix
57  << std::endl;
58  }
59 }
60 // Destructor --------------------------------------
61 template<class V, class M>
63 {
64  delete m_centerPos;
65 }
66 // -------------------------------------------------
67 // TODO: implement me, please!!!!
68 template<class V, class M>
69 void
71 {
73  m_env.worldRank(),
74  "WignerVectorRealizer<V,M>::realization()",
75  "not implemented yet");
76 
77  nextValues.cwSet(0.);
78  return;
79 }
80 
81 } // End namespace QUESO
82 
A templated class for handling sets.
Definition: VectorSet.h:49
A templated (base) class for handling sampling from vector RVs.
int worldRank() const
Returns the process world rank.
Definition: Environment.C:235
std::ofstream * subDisplayFile() const
Access function for m_subDisplayFile (displays file on stream).
Definition: Environment.C:305
void realization(V &nextValues) const
TODO: Draws a realization.
WignerVectorRealizer(const char *prefix, const VectorSet< V, M > &unifiedImageSet, const V &centerPos, double radius)
Constructor.
const BaseEnvironment & m_env
A class for handling sampling from a Wigner probability density distribution.
unsigned int displayVerbosity() const
Definition: Environment.C:436
#define UQ_FATAL_TEST_MACRO(test, givenRank, where, what)
Definition: Defines.h:223

Generated on Thu Apr 23 2015 19:26:16 for queso-0.51.1 by  doxygen 1.8.5