ViewVC Help
View File | Revision Log | Show Annotations | Root Listing
root/cvsroot/UserCode/MitAna/DataTree/interface/Muon.h
Revision: 1.5
Committed: Wed Jun 18 13:23:13 2008 UTC (16 years, 10 months ago) by paus
Content type: text/plain
Branch: MAIN
Changes since 1.4: +6 -9 lines
Log Message:
Basic structure of Filling framework.

File Contents

# User Rev Content
1 loizides 1.1 //--------------------------------------------------------------------------------------------------
2 paus 1.5 // $Id: Muon.h,v 1.4 2008/06/11 13:48:37 loizides Exp $
3 loizides 1.1 //
4     // Muon
5     //
6     // Details to be worked out...
7     //
8 paus 1.5 // Authors: C.Loizides, J.Bendavid, C.Paus
9 loizides 1.1 //--------------------------------------------------------------------------------------------------
10 paus 1.5 #ifndef DATATREE_MUON_H
11     #define DATATREE_MUON_H
12    
13     #include "MitAna/DataTree/interface/Lepton.h"
14 loizides 1.1
15     namespace mithep
16     {
17     class Muon : public Lepton
18     {
19     public:
20     Muon() {}
21 bendavid 1.3 Muon(Double_t px, Double_t py, Double_t pz, Double_t e) : Lepton(px,py,pz,e) {}
22 loizides 1.1 ~Muon() {}
23 bendavid 1.2
24 loizides 1.1 ClassDef(Muon, 1) // Muon class
25     };
26 loizides 1.4 }
27     #endif