Fork me on GitHub

Changeset 1323 in svn for trunk/classes


Ignore:
Timestamp:
Nov 8, 2013, 5:09:58 PM (11 years ago)
Author:
Pavel Demin
Message:

add vertex block

Location:
trunk/classes
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • trunk/classes/ClassesLinkDef.h

    r1123 r1323  
    3434#pragma link C++ class HepMCEvent+;
    3535#pragma link C++ class GenParticle+;
     36#pragma link C++ class Vertex+;
    3637#pragma link C++ class MissingET+;
    3738#pragma link C++ class ScalarHT+;
  • trunk/classes/DelphesClasses.h

    r1321 r1323  
    144144//---------------------------------------------------------------------------
    145145
     146class Vertex: public TObject
     147{
     148public:
     149  Float_t T; // vertex position (t component)
     150  Float_t X; // vertex position (x component)
     151  Float_t Y; // vertex position (y component)
     152  Float_t Z; // vertex position (z component)
     153
     154  ClassDef(Vertex, 1)
     155};
     156
     157//---------------------------------------------------------------------------
     158
    146159class MissingET: public TObject
    147160{
Note: See TracChangeset for help on using the changeset viewer.