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
|
#ifndef Fireworks_Calo_thetaBins_h
#define Fireworks_Calo_thetaBins_h
// -*- C++ -*-
//
// Package: Calo
// Class : thetaBins
//
/**\class thetaBins thetaBins.h Fireworks/Calo/interface/thetaBins.h
Description: <one line class summary>
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Thu Dec 11 22:59:29 EST 2008
//
// system include files
#include <vector>
#include <algorithm>
// user include files
// forward declarations
namespace fireworks {
std::vector<std::pair<double, double> > thetaBins();
}
#endif
|