Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
VallChunkFilter.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 protocols/frag_picker/VallChunkFilter.hh
11 /// @brief says whether a given chunk is interesting or not
12 /// @author Dominik Gront (dgront@chem.uw.edu.pl)
13 
14 
15 #ifndef INCLUDED_protocols_frag_picker_VallChunkFilter_hh
16 #define INCLUDED_protocols_frag_picker_VallChunkFilter_hh
17 
18 // unit headers
20 
21 // package headers
23 
24 // utility headers
25 #include <utility/pointer/ReferenceCount.hh>
26 
27 namespace protocols {
28 namespace frag_picker {
29 
30 /// @brief a base class for a chunk filtering mechanism
31 /// @detailed Chunk filtering is used to screen chunks before any fragment is evaluated
32 /// Therefore it is the fastest way to excluded unwanted proteins
33 /// @see AllowPdbIdFilter and DenyPdbIdFilter for implementations
35 public:
36  virtual ~VallChunkFilter() {}
37  /// @brief if a chunk seems to be interesting, return true. Otherwise say false
38  virtual bool test_chunk(VallChunkOP) = 0;
39 };
40 
41 } // frag_picker
42 } // protocols
43 
44 
45 #endif /* INCLUDED_protocols_frag_picker_VallChunkFilter_HH */