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_TkTauFwd_h
#define DataFormatsL1TCorrelator_TkTauFwd_h
// -*- C++ -*-
//
// Package: L1Trigger
// Class : TkTauFwd
//
#include <vector>
#include "DataFormats/Common/interface/Ref.h"
#include "DataFormats/Common/interface/RefVector.h"
namespace l1t {
class TkTau;
typedef std::vector<TkTau> TkTauCollection;
typedef edm::Ref<TkTauCollection> TkTauRef;
typedef edm::RefVector<TkTauCollection> TkTauRefVector;
typedef std::vector<TkTauRef> TkTauVectorRef;
} // namespace l1t
#endif
|