default constructor
| 22 | |
| 23 | // default constructor |
| 24 | InspectInfile::InspectInfile() : |
| 25 | modifications_per_peptide_(-1), |
| 26 | blind_(2), |
| 27 | maxptmsize_(-1.0), |
| 28 | precursor_mass_tolerance_(-1.0), |
| 29 | peak_mass_tolerance_(-1.0), |
| 30 | multicharge_(2), |
| 31 | tag_count_(-1) |
| 32 | { |
| 33 | } |
| 34 | |
| 35 | // copy constructor |
| 36 | InspectInfile::InspectInfile(const InspectInfile& inspect_infile) : |
no test coverage detected