Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ChemicalShiftScoringScheme.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 
10 /// @file ChemicalShiftScoringScheme.hh
11 /// @author James Thompson
12 
13 #ifndef INCLUDED_core_sequence_ChemicalShiftScoringScheme_hh
14 #define INCLUDED_core_sequence_ChemicalShiftScoringScheme_hh
15 
16 #include <core/types.hh>
19 
20 namespace core {
21 namespace sequence {
22 
24 public:
25 
26  /// @brief ctor
28  Real open = -4,
29  Real extend = -1
30  )
31  {
32  gap_open ( open );
33  gap_extend( extend );
34  type("ChemicalShift");
35  }
36 
38  return new ChemicalShiftScoringScheme(
39  gap_open(),
40  gap_extend()
41  );
42  }
43 
44  /// @brief dtor
46 
47  virtual Real score( SequenceOP seq1, SequenceOP seq2, Size pos1, Size pos2 );
48 }; // class ChemicalShiftScoringScheme
49 
50 } // sequence
51 } // core
52 
53 #endif