Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
Gaussian_parameter.hh
Go to the documentation of this file.
1 // -*- mode:c++;tab-width:2;indent-tabs-mode:t;show-trailing-whitespace:t;rm-trailing-spaces:t -*-
2 // vi: set ts=2 noet:
3 //
4 // (c) Copyright Rosetta Commons Member Institutions.
5 // (c) This file is part of the Rosetta software suite and is made available under license.
6 // (c) The Rosetta software is developed by the contributing members of the Rosetta Commons.
7 // (c) For more information, see http://www.rosettacommons.org. Questions about this can be
8 // (c) addressed to University of Washington UW TechTransfer, email: license@u.washington.edu.
9 /// @file core/scoring/rna/Gaussian_parameter.hh
10 /// @brief very simple class that records amplitude, center, and width of a Gaussian
11 /// @author Rhiju Das
12 
13 #ifndef INCLUDED_core_scoring_rna_Gaussian_parameter_HH
14 #define INCLUDED_core_scoring_rna_Gaussian_parameter_HH
15 
16 #include <core/types.hh>
17 
18 // Project headers
19 #include <utility/pointer/ReferenceCount.hh>
20 
21 // C++
22 namespace core {
23 namespace scoring {
24 namespace rna {
25 
27 public:
29 
30  Gaussian_parameter ( Real const amplitude_in, Real const center_in, Real const width_in ):
31  amplitude( amplitude_in ),
32  center ( center_in ),
33  width ( width_in )
34  {}
35 
36  //
39  {
40  amplitude = src.amplitude;
41  center = src.center;
42  width = src.width;
43  return *this;
44  }
45 
46 
47 };
48 
49 
50 }
51 }
52 }
53 
54 #endif