]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - TDPMjet/DPMcommon.h
reassign soft e label to its parent only for secondaries below 1 Mev kin.energy
[u/mrichter/AliRoot.git] / TDPMjet / DPMcommon.h
index effd2132cfa5df6513c357fec882eba7e6e11c0d..ede9b27c3afd9f7332c2fa868490f31538555c39 100644 (file)
@@ -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