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
|
#ifndef DataFormats_Common_FillViewHelperVector_h
#define DataFormats_Common_FillViewHelperVector_h
// -*- C++ -*-
//
// Package: DataFormats/Common
//
/**\typedef FillViewHelperVector FillViewHelperVector.h "FillViewHelperVector.h"
Description: [one line class summary]
Usage:
<usage>
*/
//
// Original Author: Chris Jones
// Created: Fri, 21 Nov 2014 20:12:50 GMT
//
// system include files
#include <vector>
#include <utility>
// user include files
#include "DataFormats/Provenance/interface/ProductID.h"
// forward declarations
namespace edm {
typedef std::vector<std::pair<edm::ProductID, unsigned long> > FillViewHelperVector;
}
#endif
|