Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
HBCPData.cc
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 
10 /// @file core/scoring/etable/etrie/CountPairData_1_1.cc
11 /// @brief CountPair Data for a residue with one connection point
12 /// @author Andrew Leaver-Fay (aleaverfay@gmail.com)
13 
14 // Unit Headers
16 
17 // STL Headers
18 // AUTO-REMOVED #include <cassert>
19 #include <iostream>
20 
21 namespace core {
22 namespace scoring {
23 namespace hbonds {
24 namespace hbtrie {
25 
26 HBCPData::HBCPData() : avoid_sc_hbonds_( false ), is_sc_( false ) {}
27 
28 void
29 HBCPData::print( std::ostream & os ) const
30 {
31  os << "HBCPData: avoid_sc_hbonds_= " << avoid_sc_hbonds_ << "; is_sc_= " << is_sc_ << ";";
32 }
33 
34 //void
35 //HBCPData::set_count_pair_data_to_use(
36 // Size /*connection_id*/
37 //) const
38 //{}
39 
40 std::ostream & operator << ( std::ostream & os, HBCPData const & hbcpdat )
41 {
42  hbcpdat.print( os );
43  return os;
44 }
45 
46 } // namespace hbtrie
47 } // namespace hbonds
48 } // namespace scoring
49 } // namespace core
50