| [807] | 1 | //
|
|---|
| 2 | // ********************************************************************
|
|---|
| 3 | // * License and Disclaimer *
|
|---|
| 4 | // * *
|
|---|
| 5 | // * The Geant4 software is copyright of the Copyright Holders of *
|
|---|
| 6 | // * the Geant4 Collaboration. It is provided under the terms and *
|
|---|
| 7 | // * conditions of the Geant4 Software License, included in the file *
|
|---|
| 8 | // * LICENSE and available at http://cern.ch/geant4/license . These *
|
|---|
| 9 | // * include a list of copyright holders. *
|
|---|
| 10 | // * *
|
|---|
| 11 | // * Neither the authors of this software system, nor their employing *
|
|---|
| 12 | // * institutes,nor the agencies providing financial support for this *
|
|---|
| 13 | // * work make any representation or warranty, express or implied, *
|
|---|
| 14 | // * regarding this software system or assume any liability for its *
|
|---|
| 15 | // * use. Please see the license in the file LICENSE and URL above *
|
|---|
| 16 | // * for the full disclaimer and the limitation of liability. *
|
|---|
| 17 | // * *
|
|---|
| 18 | // * This code implementation is the result of the scientific and *
|
|---|
| 19 | // * technical work of the GEANT4 collaboration. *
|
|---|
| 20 | // * By using, copying, modifying or distributing the software (or *
|
|---|
| 21 | // * any work based on the software) you agree to acknowledge its *
|
|---|
| 22 | // * use in resulting scientific publications, and indicate your *
|
|---|
| 23 | // * acceptance of all terms of the Geant4 Software license. *
|
|---|
| 24 | // ********************************************************************
|
|---|
| 25 | //
|
|---|
| 26 | // -------------------------------------------------------------------
|
|---|
| [1342] | 27 | // $Id: MicrobeamEventAction.cc,v 1.9 2010/10/07 14:03:11 sincerti Exp $
|
|---|
| [807] | 28 | // -------------------------------------------------------------------
|
|---|
| 29 |
|
|---|
| 30 | #include "G4Event.hh"
|
|---|
| 31 | #include "Randomize.hh"
|
|---|
| 32 |
|
|---|
| 33 | #include "MicrobeamEventAction.hh"
|
|---|
| 34 | #include "MicrobeamRunAction.hh"
|
|---|
| [1342] | 35 | #include "MicrobeamHistoManager.hh"
|
|---|
| [807] | 36 |
|
|---|
| 37 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 38 |
|
|---|
| [1342] | 39 | MicrobeamEventAction::MicrobeamEventAction(MicrobeamRunAction* run,
|
|---|
| 40 | MicrobeamHistoManager * his)
|
|---|
| 41 | :Run(run),Histo(his),drawFlag("all"),printModulo(10000)
|
|---|
| [807] | 42 | {}
|
|---|
| 43 |
|
|---|
| 44 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 45 |
|
|---|
| 46 | MicrobeamEventAction::~MicrobeamEventAction()
|
|---|
| 47 | {}
|
|---|
| 48 |
|
|---|
| 49 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 50 |
|
|---|
| 51 | void MicrobeamEventAction::BeginOfEventAction(const G4Event* evt)
|
|---|
| 52 | {
|
|---|
| 53 | G4int evtNb = evt->GetEventID();
|
|---|
| 54 | Run->SetNumEvent(evtNb);
|
|---|
| 55 | Run->SetDoseN(0);
|
|---|
| 56 | Run->SetDoseC(0);
|
|---|
| 57 | }
|
|---|
| 58 |
|
|---|
| 59 | //....oooOO0OOooo........oooOO0OOooo........oooOO0OOooo........oooOO0OOooo....
|
|---|
| 60 |
|
|---|
| [1337] | 61 | void MicrobeamEventAction::EndOfEventAction(const G4Event* )
|
|---|
| [807] | 62 | {
|
|---|
| 63 |
|
|---|
| 64 | // SAVE TOTAL ABSORBED DOSE IN PHANTOM
|
|---|
| 65 |
|
|---|
| 66 | if (Run->GetDoseN()>0 || Run->GetDoseC()>0)
|
|---|
| 67 | {
|
|---|
| [1342] | 68 | Histo->FillNtuple(3,0,Run->GetDoseN());
|
|---|
| 69 | Histo->FillNtuple(3,1,Run->GetDoseC());
|
|---|
| 70 | Histo->AddRowNtuple(3);
|
|---|
| 71 |
|
|---|
| [807] | 72 | G4cout << " ===> The incident alpha particle has reached the targeted cell :" << G4endl;
|
|---|
| 73 | G4cout << " -----> total absorbed dose within Nucleus is (Gy) = " << Run->GetDoseN() << G4endl;
|
|---|
| 74 | G4cout << " -----> total absorbed dose within Cytoplasm is (Gy) = " << Run->GetDoseC() << G4endl;
|
|---|
| 75 | G4cout << G4endl;
|
|---|
| 76 | }
|
|---|
| 77 | else
|
|---|
| 78 | {
|
|---|
| 79 | G4cout << " ===> Sorry, the incident alpha particle has missed the targeted cell !" << G4endl;
|
|---|
| 80 | G4cout << G4endl;
|
|---|
| 81 | }
|
|---|
| 82 | }
|
|---|