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
|
#ifndef Fireworks_Core_fw3dlego_xbins_h
#define Fireworks_Core_fw3dlego_xbins_h
// -*- C++ -*-
//
// Package: Core
// Class : fw3dlego_xbins
//
/**\class fw3dlego_xbins fw3dlego_xbins.h Fireworks/Core/interface/fw3dlego_xbins.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Wed Dec 3 13:55:42 EST 2008
//
namespace fw3dlego {
extern const int xbins_n;
extern const double xbins[];
extern const int xbins_hf_n;
extern const double xbins_hf[];
} // namespace fw3dlego
#endif
|