~ubuntu-branches/ubuntu/trusty/tandem-mass/trusty-proposed

« back to all changes in this revision

Viewing changes to src/mhistogram.h

  • Committer: Package Import Robot
  • Author(s): The Debichem Group
  • Date: 2013-08-29 12:21:32 UTC
  • mfrom: (1.1.2)
  • Revision ID: package-import@ubuntu.com-20130829122132-2rlhwaf1l2u7duf1
Tags: 1:2013.06.15-1
* quilt dependencies removed from rules. quilt is now used the modern
  way as decribed in http://pkg-perl.alioth.debian.org/howto/quilt.html

* Packaging of X!Tandem (JACKHAMMER 2013.06.15, from
  http://www.thegpm.org/TANDEM/) for Debian GNU/Linux
  (Olivier Langella <Olivier.Langella@moulon.inra.fr>, with the
  great help of Filippo Rusconi <lopippo@debian.org>);

* Upload by Filippo Rusconi <lopippo@debian.org>;

Show diffs side-by-side

added added

removed removed

Lines of Context:
158
158
                init();
159
159
                (*this) = rhs;
160
160
        }
 
161
        unsigned short* m_pList; // doubling buffer
 
162
        long m_lLength; // the length of the histogram
161
163
        unsigned long m_ulCount;
162
164
        void init() {
163
165
                m_ulCount = 0;
177
179
        double m_dProteinFactor; // a weighting factor
178
180
        float m_fA0; // the intercept of the least-squares fit performed in model
179
181
        float m_fA1; // the slope of the least-squares fit performed in model
180
 
        long m_lLength; // the length of the histogram
181
182
private:
182
183
        vector<long> m_vlSurvive; // the survival function array, reduced to [96] from [256]
183
 
        unsigned short* m_pList; // doubling buffer
184
184
        long m_lSum;
185
185
        double m_dLimit;
186
186