X-Git-Url: http://git.uio.no/git/?a=blobdiff_plain;f=TDPMjet%2FDPMcommon.h;h=ede9b27c3afd9f7332c2fa868490f31538555c39;hb=81a0c667e4c6b157f5ab10cfd0078a977ee2ff66;hp=effd2132cfa5df6513c357fec882eba7e6e11c0d;hpb=1a52e0edb2bad3926b7e3a2784a35116d68abfc3;p=u%2Fmrichter%2FAliRoot.git diff --git a/TDPMjet/DPMcommon.h b/TDPMjet/DPMcommon.h index effd2132cfa..ede9b27c3af 100644 --- a/TDPMjet/DPMcommon.h +++ b/TDPMjet/DPMcommon.h @@ -200,6 +200,8 @@ typedef struct { Int_t nwtacc; Int_t nwtaac; Int_t nwtbac; + Int_t ncp; + Int_t nct; } DtglcpCommon; #define DTGLCP COMMON_BLOCK(DTGLCP,dtglcp) @@ -217,5 +219,49 @@ COMMON_BLOCK_DEF(DtglcpCommon,DTGLCP); /* NWTAAC = total number of interacting nucleons in proj. */ /* NWTBAC = total number of interacting nucleons in target*/ /*========================================================*/ +/*========================================================*/ +/* COMMON /POPRCS/IPROCE,IDNODF,IDIFR1,IDIFR2,IDDPOM, */ +/* IPRON(15,4) */ +/*--------------------------------------------------------*/ +typedef struct { + Int_t iproce; + Int_t idnodf; + Int_t idifr1; + Int_t idifr2; + Int_t iddpom; + Int_t ipron[15][4]; +} PoprcsCommon; + +#define POPRCS COMMON_BLOCK(POPRCS,poprcs) +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), NSD1, NSD2, NDD +*/ +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]; + Int_t nsd1; + Int_t nsd2; + Int_t ndd; +} Poevt1Common; + +#define POEVT1 COMMON_BLOCK(POEVT1,poevt1) +COMMON_BLOCK_DEF(Poevt1Common,POEVT1); #endif