// // ******************************************************************** // * License and Disclaimer * // * * // * The Geant4 software is copyright of the Copyright Holders of * // * the Geant4 Collaboration. It is provided under the terms and * // * conditions of the Geant4 Software License, included in the file * // * LICENSE and available at http://cern.ch/geant4/license . These * // * include a list of copyright holders. * // * * // * 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. Please see the license in the file LICENSE and URL above * // * for the full disclaimer and the limitation of liability. * // * * // * This code implementation is the result of the scientific and * // * technical work of the GEANT4 collaboration. * // * By using, copying, modifying or distributing the software (or * // * any work based on the software) you agree to acknowledge its * // * use in resulting scientific publications, and indicate your * // * acceptance of all terms of the Geant4 Software license. * // ******************************************************************** // // // $Id: G4HEPEvtInterface.cc,v 1.11 2006/06/29 18:09:48 gunter Exp $ // GEANT4 tag $Name: $ // // // -------------------------------------------------------------------- #include "G4Types.hh" #include "G4ios.hh" #include "G4HEPEvtInterface.hh" #include "G4PrimaryVertex.hh" #include "G4PrimaryParticle.hh" #include "G4HEPEvtParticle.hh" #include "G4Event.hh" G4HEPEvtInterface::G4HEPEvtInterface(char* evfile) { inputFile.open(evfile); if (inputFile) { fileName = evfile; } else { G4Exception("G4HEPEvtInterface:: cannot open file."); } G4ThreeVector zero; particle_position = zero; particle_time = 0.0; } G4HEPEvtInterface::G4HEPEvtInterface(G4String evfile) { const char* fn = evfile.data(); inputFile.open((char*)fn); if (inputFile) { fileName = evfile; } else { G4Exception("G4HEPEvtInterface:: cannot open file."); } G4ThreeVector zero; particle_position = zero; particle_time = 0.0; } G4HEPEvtInterface::~G4HEPEvtInterface() {;} void G4HEPEvtInterface::GeneratePrimaryVertex(G4Event* evt) { G4int NHEP; // number of entries inputFile >> NHEP; if( inputFile.eof() ) { G4Exception("End-Of-File : HEPEvt input file"); return; } for( G4int IHEP=0; IHEP> ISTHEP >> IDHEP >> JDAHEP1 >> JDAHEP2 >> PHEP1 >> PHEP2 >> PHEP3 >> PHEP5; // create G4PrimaryParticle object G4PrimaryParticle* particle = new G4PrimaryParticle( IDHEP, PHEP1*GeV, PHEP2*GeV, PHEP3*GeV ); particle->SetMass( PHEP5*GeV ); // create G4HEPEvtParticle object G4HEPEvtParticle* hepParticle = new G4HEPEvtParticle( particle, ISTHEP, JDAHEP1, JDAHEP2 ); // Store HPlist.push_back( hepParticle ); } // check if there is at least one particle if( HPlist.size() == 0 ) return; // make connection between daughter particles decayed from // the same mother for( size_t i=0; iGetJDAHEP1() > 0 ) // it has daughters { G4int jda1 = HPlist[i]->GetJDAHEP1()-1; // FORTRAN index starts from 1 G4int jda2 = HPlist[i]->GetJDAHEP2()-1; // but C++ starts from 0. G4PrimaryParticle* mother = HPlist[i]->GetTheParticle(); for( G4int j=jda1; j<=jda2; j++ ) { G4PrimaryParticle* daughter = HPlist[j]->GetTheParticle(); if(HPlist[j]->GetISTHEP()>0) { mother->SetDaughter( daughter ); HPlist[j]->Done(); } } } } // create G4PrimaryVertex object G4PrimaryVertex* vertex = new G4PrimaryVertex(particle_position,particle_time); // put initial particles to the vertex for( size_t ii=0; iiGetISTHEP() > 0 ) // ISTHEP of daughters had been // set to negative { G4PrimaryParticle* initialParticle = HPlist[ii]->GetTheParticle(); vertex->SetPrimary( initialParticle ); } } // clear G4HEPEvtParticles //HPlist.clearAndDestroy(); for(size_t iii=0;iiiAddPrimaryVertex( vertex ); }