1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
|
#ifndef Fireworks_Core_FWParameters_h
#define Fireworks_Core_FWParameters_h
// -*- C++ -*-
//
// Package: Core
// Class : FWGenericParameterWithRange
//
/**\class FWGenericParameterWithRange FWGenericParameter.h Fireworks/Core/interface/FWLongParameter.h
Description: Provides access to a simple double parameter
Usage:
If min and max values are both identical than no restriction is placed on the allowed value
*/
//
// Original Author: Chris Jones
// Created: Fri Mar 7 14:36:34 EST 2008
//
// user include files
#include "Fireworks/Core/interface/FWGenericParameter.h"
#include "Fireworks/Core/interface/FWGenericParameterWithRange.h"
// forward declarations
struct FWParameters {
typedef FWGenericParameterWithRange<long> Long;
typedef FWGenericParameterWithRange<double> Double;
typedef FWGenericParameter<std::string> String;
typedef FWGenericParameter<bool> Bool;
};
typedef FWParameters::Long FWLongParameter;
typedef FWParameters::Double FWDoubleParameter;
typedef FWParameters::String FWStringParameter;
typedef FWParameters::Bool FWBoolParameter;
#endif
|