laura is hosted by Hepforge, IPPP Durham
Laura++  v3r2
A maximum likelihood fitting package for performing Dalitz-plot analysis.
LauParamFixed.hh
Go to the documentation of this file.
1 
2 // Copyright University of Warwick 2006 - 2013.
3 // Distributed under the Boost Software License, Version 1.0.
4 // (See accompanying file LICENSE_1_0.txt or copy at http://www.boost.org/LICENSE_1_0.txt)
5 
6 // Authors:
7 // Thomas Latham
8 // John Back
9 // Paul Harrison
10 
19 #ifndef LAU_PARAM_FIXED
20 #define LAU_PARAM_FIXED
21 
22 #include "LauAbsRValue.hh"
23 
25  public:
27 
31  inline bool operator() (const LauAbsRValue* par) const {
32  return par->fixed();
33  }
34 };
35 
36 #endif
bool operator()(const LauAbsRValue *par) const
Predicate that check whether the parameter is fixed.
File containing declaration of LauAbsRValue class.
Predicate to allow counting of the number of fixed parameters.
virtual Bool_t fixed() const =0
Check is the parameter is fixed or floated.
Pure abstract base class for defining a parameter containing an R value.
Definition: LauAbsRValue.hh:29