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
|
#ifndef DataFormatsL1TCorrelator_TkGlbMuonFwd_h
#define DataFormatsL1TCorrelator_TkGlbMuonFwd_h
// -*- C++ -*-
//
// Package: L1Trigger
// Class : TkGlbMuonFwd
//
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
namespace l1t {
class TkGlbMuon;
typedef std::vector<TkGlbMuon> TkGlbMuonCollection;
typedef edm::Ref<TkGlbMuonCollection> TkGlbMuonRef;
typedef edm::RefVector<TkGlbMuonCollection> TkGlbMuonRefVector;
typedef std::vector<TkGlbMuonRef> TkGlbMuonVectorRef;
} // namespace l1t
#endif
|