X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TDPMjet%2FDPMcommon.h;h=d5bd816a90de07ebd1d1904d90a2a66224fd9e62;hb=4820b1ae168e96c07fead88e4c59b2bac6e81ef9;hp=3abee3a1ccdbaebe18d507c807a63a454568d6ad;hpb=9dcc0beb08d7b4938f2c77864a0ecf0ba72dfbcd;p=u%2Fmrichter%2FAliRoot.git diff --git a/TDPMjet/DPMcommon.h b/TDPMjet/DPMcommon.h index 3abee3a1ccd..d5bd816a90d 100644 --- a/TDPMjet/DPMcommon.h +++ b/TDPMjet/DPMcommon.h @@ -237,5 +237,26 @@ COMMON_BLOCK_DEF(PoprcsCommon,POPRCS); /**********************************************************/ /* D E S C R I P T I O N : */ /*--------------------------------------------------------*/ +/* + + COMMON /POEVT1/ NEVHEP,NHEP,ISTHEP(NMXHEP),IDHEP(NMXHEP), + & JMOHEP(2,NMXHEP),JDAHEP(2,NMXHEP),PHEP(5,NMXHEP), + & VHEP(4,NMXHEP) +*/ +const Int_t nmxhep = 4000; + +typedef struct { + Int_t nevhep; + Int_t nhep; + Int_t isthep[nmxhep]; + Int_t idhep [nmxhep]; + Int_t jmohep[nmxhep][2]; + Int_t jdahep[nmxhep][2]; + Double_t phep [nmxhep][5]; + Double_t vhep [nmxhep][4]; +} Poevt1Common; + +#define POEVT1 COMMON_BLOCK(POEVT1,poevt1) +COMMON_BLOCK_DEF(Poevt1Common,POEVT1); #endif