]> git.uio.no Git - u/mrichter/AliRoot.git/blobdiff - THijing/Hcommon.h
assignment operator update typo - fix from Jochen K - thanks!
[u/mrichter/AliRoot.git] / THijing / Hcommon.h
index 2804eaadcbb92303e37fc560c2924e7c400cb32b..9797685bcf4561214fbcaa5e0b6468a89bc85c9f 100644 (file)
@@ -511,6 +511,33 @@ typedef struct {
 
 #define HISTRNG COMMON_BLOCK(HISTRNG,histrng)
 COMMON_BLOCK_DEF(HistrngCommon,HISTRNG);
+
+
+/*************************************************************************/
+/*           D E S C R I P T I O N :                                     */
+/*-----------------------------------------------------------------------*/
+/*    The following common block is added to record the number of elastic*/
+/*    (NELT, NELP) and inelastic (NINT, NINP) participants               */
+/*                                                                       */
+/*=======================================================================*/
+/*     COMMON/HIJGLBR/NELT,NINT,NELP,NINP                                */
+/*     SAVE  /HIJGLBR/                                                   */
+/*=======================================================================*/
+typedef struct {
+    Int_t    nelt;
+    Int_t    nint;
+    Int_t    nelp;
+    Int_t    ninp;
+    Int_t    npspecp;
+    Int_t    nnspecp;
+    Int_t    npspect;
+    Int_t    nnspect;
+} HijglbrCommon;
+
+#define HIJGLBR COMMON_BLOCK(HIJGLBR,hijglbr)
+COMMON_BLOCK_DEF(HijglbrCommon,HIJGLBR);    
+
+    
 /*************************************************************************/
 /*           D E S C R I P T I O N :                                     */
 /*-----------------------------------------------------------------------*/
@@ -581,4 +608,15 @@ COMMON_BLOCK_DEF(HistrngCommon,HISTRNG);
 COMMON_BLOCK_DEF(Ludat1_HijingCommon,LUDAT1_HIJING);
 }
 
+//COMMON/LUDAT3_HIJING/MDCY(500, 3),MDME(2000, 2),BRAT(2000),KFDP(2000, 5)
+    typedef struct {
+      Int_t    mdcy[3][500];
+      Int_t    mdme[2][2000];
+      Float_t  brat[2000];
+      Float_t  kfdp[5][2000];
+} Ludat3_HijingCommon;
+
+#define LUDAT3_HIJING COMMON_BLOCK(LUDAT3_HIJING,ludat3_hijing)
+COMMON_BLOCK_DEF(Ludat3_HijingCommon,LUDAT3_HIJING);
+
 #endif