Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
DerivedSequenceMapping.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
11 /// @brief
12 /// @author
13 
14 #include <core/types.hh>
17 // AUTO-REMOVED #include <core/conformation/Conformation.hh>
18 // AUTO-REMOVED #include <core/conformation/signals/LengthEvent.hh>
19 // AUTO-REMOVED #include <basic/Tracer.hh>
20 #include <utility/exit.hh>
21 // AUTO-REMOVED #include <core/kinematics/AtomWithDOFChange.hh>
22 
23 #include <algorithm> // for max_element
24 
25 // ObjexxFCL headers
26 // AUTO-REMOVED #include <ObjexxFCL/string.functions.hh>
27 
28 #include <utility/vector1.hh>
29 
30 //Auto Headers
32 #include <core/kinematics/Jump.hh>
33 
34 //Auto using namespaces
35 namespace ObjexxFCL { namespace fmt { } } using namespace ObjexxFCL::fmt; // AUTO USING NS
36 //Auto using namespaces end
37 
38 
39 
40 namespace core {
41 namespace sequence {
42 
43 using namespace ObjexxFCL;
44 
45 DerivedSequenceMapping::~DerivedSequenceMapping() {}
46 
47 DerivedSequenceMapping::DerivedSequenceMapping( DerivedSequenceMapping const & src )
48  : SequenceMapping(src)
49 {
50  *this = src;
51 }
52 
55  seq1_ = src.seq1();
56  seq2_ = src.seq2();
57  size2( src.size2() );
58  mapping( src.mapping() );
59  start_seq2_ = src.start_seq2();
60 
61  return *this;
62 }
63 
64 } // sequence
65 } // core
66