/usr/include/root/TParticleClassPDG.h is in libroot-montecarlo-eg-dev 5.34.14-1build1.
This file is owned by root:root, with mode 0o644.
The actual contents of the file can be viewed below.
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 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 | // @(#)root/eg:$Id$
// Author: Pasha Murat 12/02/99
/*************************************************************************
* Copyright (C) 1995-2000, Rene Brun and Fons Rademakers. *
* All rights reserved. *
* *
* For the licensing terms see $ROOTSYS/LICENSE. *
* For the list of contributors see $ROOTSYS/README/CREDITS. *
*************************************************************************/
#ifndef TParticleClassPDG_hh
#define TParticleClassPDG_hh
#include "TNamed.h"
#include "TObjArray.h"
class TParticlePDG;
class TParticleClassPDG : public TNamed {
public:
//------------------------------------------------------------------------------
// data members
//------------------------------------------------------------------------------
protected:
TObjArray* fListOfParticles; // list of (non-owned) particles
TParticleClassPDG(const TParticleClassPDG& pcp): TNamed(pcp), fListOfParticles(pcp.fListOfParticles) { }
TParticleClassPDG& operator=(const TParticleClassPDG& pcp)
{if(this!=&pcp) {TNamed::operator=(pcp); fListOfParticles=pcp.fListOfParticles;}
return *this;
}
//------------------------------------------------------------------------------
// functions
//------------------------------------------------------------------------------
public:
// ****** constructors and destructor
TParticleClassPDG(const char* name = 0);
virtual ~TParticleClassPDG();
// ****** access methods
Int_t GetNParticles () {
return fListOfParticles->GetEntriesFast();
}
TParticlePDG* GetParticle(Int_t i) {
return (TParticlePDG*) fListOfParticles->At(i);
}
TObjArray* GetListOfParticles() { return fListOfParticles; }
// ****** modifiers
void AddParticle(TObject* p) { fListOfParticles->Add(p); }
// ****** overloaded methods of TObject
virtual void Print(Option_t* opt="") const; // *MENU*
Bool_t IsFolder() const { return kTRUE; }
virtual void Browse(TBrowser* b);
ClassDef(TParticleClassPDG,1) // PDG static particle definition
};
#endif
|