// // ******************************************************************** // * DISCLAIMER * // * * // * The following disclaimer summarizes all the specific disclaimers * // * of contributors to this software. The specific disclaimers,which * // * govern, are listed with their locations in: * // * http://cern.ch/geant4/license * // * * // * Neither the authors of this software system, nor their employing * // * institutes,nor the agencies providing financial support for this * // * work make any representation or warranty, express or implied, * // * regarding this software system or assume any liability for its * // * use. * // * * // * This code implementation is the intellectual property of the * // * GEANT4 collaboration. * // * By copying, distributing or modifying the Program (or any work * // * based on the Program) you indicate your acceptance of this * // * statement, and all its terms. * // ******************************************************************** // // // $Id: tiara.cc,v 1.3 2003/12/04 11:08:48 gcosmo Exp $ // GEANT4 tag // // // -------------------------------------------------------------- // GEANT 4 - tiara // // -------------------------------------------------------------- // Comments // // // -------------------------------------------------------------- #include "TiaraSim.hh" #include "G4RegionStore.hh" #include "G4ProductionCutsTable.hh" #include "TiaraTally.hh" #include "Randomize.hh" int main(int, char **) { std::vector binEdges; binEdges.push_back(1.); binEdges.push_back(3.); binEdges.push_back(7.); binEdges.push_back(13.); binEdges.push_back(21.); TiaraTally t; t.setBinEdges(binEdges); for (G4int e=0; e<1000; e++) { for (G4int i=0; i<1000; i++) { G4double r(1 + G4UniformRand()*20); t.fill(r, G4UniformRand()); } t.EndOfEventAction(); } for (G4int i=0; iConstruct(); phys->SetCuts(); G4RegionStore::GetInstance()->UpdateMaterialList(); // Let G4ProductionCutsTable update couples G4ProductionCutsTable::GetProductionCutsTable()->UpdateCoupleTable(); G4ProductionCutsTable::GetProductionCutsTable()->DumpCouples(); if(G4ProductionCutsTable::GetProductionCutsTable()->IsModified()) { phys->BuildPhysicsTable(); G4ProductionCutsTable::GetProductionCutsTable()->PhysicsTableUpdated(); } phys->DumpCutValuesTableIfRequested(); TiaraSim &tSim = TiaraSim::GetTiaraSim(); */ }