Rosetta 3.5
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Pages
FileExistFilter.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/simple_filters/FileExistFilter.hh
11 /// @brief Simple filter that tests whether a file exists. Useful to test whether we're recovering from a checkpoint
12 /// @author Sarel Fleishman
13 
14 #ifndef INCLUDED_protocols_simple_filters_FileExistFilter_hh
15 #define INCLUDED_protocols_simple_filters_FileExistFilter_hh
16 
17 //unit headers
19 
20 // Project Headers
22 #include <core/types.hh>
24 #include <core/pose/Pose.fwd.hh>
27 
28 namespace protocols {
29 namespace simple_filters {
30 
32 {
33 public:
34  //default ctor
36  bool apply( core::pose::Pose const & pose ) const;
38  return new FileExistFilter( *this );
39  }
41  return new FileExistFilter();
42  }
43 
44  void report( std::ostream & out, core::pose::Pose const & pose ) const;
45  core::Real report_sm( core::pose::Pose const & pose ) const;
46  core::Real compute( core::pose::Pose const &pose ) const;
47  virtual ~FileExistFilter();
49 
50  void filename( std::string const f );
51  std::string filename() const;
52  bool ignore_zero_byte() const{ return ignore_zero_byte_; }
53  void ignore_zero_byte( bool const i ){ ignore_zero_byte_ = i; }
54 private:
56  bool ignore_zero_byte_; // dflt false; if the file is 0b then it counts as if the file doesn't exist
57 };
58 
59 }
60 }
61 
62 #endif