Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
ConcurrencyTest.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 ConcurrencyTest.hh
11 ///
12 /// @brief
13 /// @author Tim Jacobs
14 
15 #ifndef INCLUDED_protocols_features_helixAssembly_ConcurrencyTest_hh
16 #define INCLUDED_protocols_features_helixAssembly_ConcurrencyTest_hh
17 
18 #include <stdio.h>
19 #include <stdlib.h>
20 #include <time.h>
21 
23 
24 //Core
25 #include <core/types.hh>
28 
29 //External
30 #include <boost/uuid/uuid.hpp>
31 
32 //Devel
35 
36 //Utility and basic
37 #include <basic/database/sql_utils.hh>
38 #include <utility/sql_database/DatabaseSessionManager.hh>
39 
40 //C++
41 #include <string>
42 #include <math.h>
43 
44 //External Headers
45 #include <cppdb/frontend.h>
46 
47 //Basic
48 #include <basic/Tracer.hh>
49 #include <basic/options/util.hh>
50 #include <basic/options/keys/helixAssembly.OptionKeys.gen.hh>
51 
52 namespace protocols {
53 namespace features {
54 namespace helixAssembly {
55 
57 {
58 
59 public:
60 
62 
63  virtual
65  type_name() const {
66  return "HelixBundleFeatures";
67  }
68 
69  ///@brief generate the table schemas and write them to the database
70  virtual void
71  write_schema_to_db(utility::sql_database::sessionOP db_session) const;
72 
73  ///@brief collect all the feature data for the pose
74  virtual
77  core::pose::Pose const & pose,
78  utility::vector1<bool> const & relevant_residues,
79  boost::uuids::uuid struct_id,
80  utility::sql_database::sessionOP db_session
81  );
82 };
83 
84 }
85 }
86 }
87 #endif