Ignore:
Timestamp:
Nov 5, 2010, 3:45:55 PM (14 years ago)
Author:
garnier
Message:

update ti head

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/source/processes/hadronic/models/cascade/cascade/include/G4CascadeFunctions.icc

    r1337 r1340  
     1#ifndef G4_CASCADE_FUNCTIONS_ICC
     2#define G4_CASCADE_FUNCTIONS_ICC
    13//
    24// ********************************************************************
     
    2426// ********************************************************************
    2527//
    26 // $Id: G4CascadeFunctions.icc,v 1.3 2010/06/25 09:41:58 gunter Exp $
    27 // GEANT4 tag: $Name: geant4-09-04-beta-01 $
     28// $Id: G4CascadeFunctions.icc,v 1.5 2010/08/04 05:28:24 mkelsey Exp $
     29// GEANT4 tag: $Name: hadr-casc-V09-03-85 $
    2830//
    2931// 20100512  M. Kelsey -- Pass std::vector<> buffer as argument to
    3032//              getOutgoingPartTypes().
     33// 20100803  M. Kelsey -- Add printing function for debugging
     34// 20100804  M. Kelsey -- Pretty up printing function
    3135
    32 #ifndef G4_CASCADE_FUNCTIONS_ICC
    33 #define G4_CASCADE_FUNCTIONS_ICC
     36#include "G4CascadeFunctions.hh"
     37#include "globals.hh"
    3438
    3539
     
    5559
    5660
     61// Generate list of final state particles
     62
    5763template <class DATA, class SAMP> inline
    5864void G4CascadeFunctions<DATA,SAMP>::
     
    7581#endif
    7682
    77   // Identify final-state array to be copies
     83  // Identify final-state array to be copied
    7884  const G4int* chan = 0;
    7985  if (mult == 2) chan = DATA::data.x2bfs[channel];
     
    96102}
    97103
     104
     105// Dump lookup tables, including interpolation bins, to log file
     106
     107template <class DATA, class SAMP> inline
     108void G4CascadeFunctions<DATA,SAMP>::printTable() {
     109  G4cout << " ---------- " << DATA::data.name << " ----------" << G4endl;
     110  instance.print();
     111  DATA::data.print();
     112  G4cout << " ------------------------------" << G4endl;
     113}
     114
    98115#endif  /* G4_CASCADE_FUNCTIONS_ICC */
Note: See TracChangeset for help on using the changeset viewer.