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 DataFormatsL1TCorrelator_TkEmFwd_h
#define DataFormatsL1TCorrelator_TkEmFwd_h
// -*- C++ -*-
//
// Package: L1Trigger
// Class : TkEmFwd
//
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
#include "DataFormats/L1Trigger/interface/RegionalOutput.h"
namespace l1t {
class TkEm;
typedef std::vector<TkEm> TkEmCollection;
typedef edm::Ref<TkEmCollection> TkEmRef;
typedef edm::RefVector<TkEmCollection> TkEmRefVector;
typedef std::vector<TkEmRef> TkEmVectorRef;
typedef l1t::RegionalOutput<l1t::TkEmCollection> TkEmRegionalOutput;
} // namespace l1t
#endif
|