ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/System8/s8/S8Tree/interface/S8Fwd.h
Revision: 1.2
Committed: Tue May 24 16:15:11 2011 UTC (13 years, 11 months ago) by samvel
Content type: text/plain
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +0 -0 lines
State: FILE REMOVED
Error occurred while calculating annotation data.
Log Message:
Remove the S8Tree code

File Contents

# Content
1 /**
2 * Forward declarations
3 * s8
4 *
5 * Created by Samvel Khalatian on Nov 20, 2010
6 * Copyright 2010, All rights reserved
7 */
8
9 #ifndef S8_FORWARD_DECLARATIONS
10 #define S8_FORWARD_DECLARATIONS
11
12 #include <vector>
13
14 namespace s8
15 {
16 class Jet;
17 class Lepton;
18 class PrimaryVertex;
19 class Trigger;
20
21 typedef std::vector<Jet *> Jets;
22 typedef std::vector<Lepton *> Leptons;
23 typedef std::vector<PrimaryVertex *> PrimaryVertices;
24 typedef std::vector<Trigger *> Triggers;
25 }
26
27 #endif