thepeg is hosted by Hepforge, IPPP Durham
ThePEG 2.3.0
PartonBin.fh
1// -*- C++ -*-
2//
3// This is the forward declaration of the PartonBin class.
4//
5#ifndef ThePEG_PartonBin_FH
6#define ThePEG_PartonBin_FH
7
8#include "ThePEG/Config/Pointers.h"
9
10namespace ThePEG {
11
12class PartonBin;
13ThePEG_DECLARE_POINTERS(PartonBin,PBPtr);
14
15/** A vector of pointers to PartonBin objects. */
16typedef vector<PBPtr> PartonVector;
17
18/** A pair of pointers to ParicleBin objects. */
19typedef pair<PBPtr, PBPtr> PBPair;
20
21/** A pair of pointers to ParicleBin objects. */
22typedef pair<tcPBPtr, tcPBPtr> tcPBPair;
23
24/** A vector of pairs of pointers to PartonBins. */
25typedef vector<PBPair> PartonPairVec;
26
27}
28
29#endif