1 |
samvel |
1.1 |
/**
|
2 |
|
|
* Plug (do not use it)
|
3 |
|
|
* s8
|
4 |
|
|
*
|
5 |
|
|
* Created by Samvel Khalatian on Nov 15, 2010
|
6 |
|
|
* Copyright 2010, All rights reserved
|
7 |
|
|
*/
|
8 |
|
|
|
9 |
|
|
#ifndef S8_PLUG
|
10 |
|
|
#define S8_PLUG
|
11 |
|
|
|
12 |
|
|
/*
|
13 |
|
|
#include <memory>
|
14 |
|
|
#include <utility>
|
15 |
|
|
|
16 |
|
|
#include <TLorentzVector.h>
|
17 |
|
|
|
18 |
|
|
#include "interface/S8EventID.h"
|
19 |
|
|
#include "interface/S8GenEvent.h"
|
20 |
|
|
#include "interface/S8GenParticle.h"
|
21 |
|
|
#include "interface/S8Jet.h"
|
22 |
|
|
#include "interface/S8Lepton.h"
|
23 |
|
|
#include "interface/S8PrimaryVertex.h"
|
24 |
|
|
#include "interface/S8Trigger.h"
|
25 |
|
|
//#include "interface/S8TriggerCenter.h"
|
26 |
|
|
|
27 |
|
|
namespace s8
|
28 |
|
|
{
|
29 |
|
|
class Plug
|
30 |
|
|
{
|
31 |
|
|
private:
|
32 |
|
|
Plug();
|
33 |
|
|
|
34 |
|
|
std::auto_ptr<TLorentzVector> _1_1;
|
35 |
|
|
std::auto_ptr<TVector3> _1_2;
|
36 |
|
|
std::auto_ptr<EventID> _2_1;
|
37 |
|
|
std::auto_ptr<GenParticle> _2_2;
|
38 |
|
|
std::auto_ptr<GenEvent> _2_3;
|
39 |
|
|
|
40 |
|
|
std::auto_ptr<std::pair<double, double> > _2_4;
|
41 |
|
|
|
42 |
|
|
std::vector<Jet *> _3_1;
|
43 |
|
|
std::vector<Lepton *> _3_2;
|
44 |
|
|
std::vector<PrimaryVertex *> _3_3;
|
45 |
|
|
std::vector<Trigger *> _3_4;
|
46 |
|
|
|
47 |
|
|
// Tree Info
|
48 |
|
|
//
|
49 |
|
|
std::pair<int, int> _4_1;
|
50 |
|
|
};
|
51 |
|
|
}
|
52 |
|
|
*/
|
53 |
|
|
|
54 |
|
|
#endif
|