1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
#ifndef METRECO_PFMETCOLLECTION_H
#define METRECO_PFMETCOLLECTION_H
/** \class PFMETCollection
*
* \short Collection of PF MET
*
* PFMETCollection is a collection of PFMET objects
*
* \author R.Remington, UFlorida
*
* \version 1st Version Oct, 2008.
*
************************************************************/
#include <vector>
#include "DataFormats/METReco/interface/PFMETFwd.h"
namespace reco {
typedef std::vector<reco::PFMET> PFMETCollection;
}
#endif // METRECO_PFMETCOLLECTION_H
|