Geant4-11
G4ITReaction.cc
Go to the documentation of this file.
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/*
27 * G4ITReactionInfo.cc
28 *
29 * Created on: 1 févr. 2015
30 * Author: matkara
31 */
32
33#include <G4ITReaction.hh>
34#include "globals.hh"
35
36//G4ThreadLocal std::set<G4ITReaction*>* G4ITReaction::gAll(0);
37
39
41 G4ITReactionPtr lhs) const
42{
43 G4double time1 = rhs->GetTime();
44 G4double time2 = lhs->GetTime();
45 if (time1 == time2)
46 {
47 return rhs->GetHash() < lhs->GetHash();
48 }
49 return rhs->GetTime() < lhs->GetTime();
50}
51
52
53template<class T>
54inline void hash_combine(std::size_t& seed,
55 const T& v)
56{
57// std::hash<T> hasher;
58 seed ^= /*std::hash<T>(v)*/ v + 0x9e3779b9 + (seed << 6) + (seed >> 2);
59}
60
61std::size_t G4ITReaction::GetHash() const
62{
63 std::size_t hash = 0;
64 hash_combine(hash, fReactants.first->GetTrackID());
65 hash_combine(hash, fReactants.first->GetTrackID());
66 return hash;
67}
68
71 fTime(time),
72 fReactants(trackA,trackB)
73{
74 //if(gAll == 0) gAll = new std::set<G4ITReaction*>();
75 //gAll->insert(this);
77}
78
80{
81 //gAll->erase(this);
83}
84
86{
87 G4ITReactionPtr backMeUp = this->shared_from_this();
88 for(auto it = fReactionPerTrack.begin() ;
89 it != fReactionPerTrack.end() ; ++it)
90 {
91 it->first->RemoveThisReaction(it->second);
92 }
93 fReactionPerTrack.clear();
94
96 {
98 delete fReactionPerTimeIt;
99 fReactionPerTimeIt = nullptr;
100 }
101}
102
104{
105 fReactions.erase(it);
106 if(fReactions.empty())
107 {
108 G4ITReactionSet::Instance()->RemoveReactionPerTrack(this->shared_from_this());
109 return true;
110 }
111 return false;
112}
void hash_combine(std::size_t &seed, const T &v)
Definition: G4ITReaction.cc:54
G4shared_ptr< G4ITReaction > G4ITReactionPtr
Definition: G4ITReaction.hh:60
double G4double
Definition: G4Types.hh:83
bool G4bool
Definition: G4Types.hh:86
#define G4enable_shared_from_this
Definition: G4memory.hh:37
G4ITReactionList fReactions
G4bool RemoveThisReaction(G4ITReactionList::iterator it)
static G4ThreadLocal G4ITReactionSet * fpInstance
void RemoveReactionPerTrack(G4ITReactionPerTrackPtr reactionPerTrack)
static G4ITReactionSet * Instance()
G4ITReactionPerTime & GetReactionsPerTime()
virtual ~G4ITReaction()
Definition: G4ITReaction.cc:79
G4ITReaction(G4double time, G4Track *, G4Track *)
Definition: G4ITReaction.cc:69
std::pair< G4Track *, G4Track * > fReactants
void RemoveMe()
Definition: G4ITReaction.cc:85
G4ReactionPerTrackIt fReactionPerTrack
G4ITReactionPerTimeIt * fReactionPerTimeIt
std::size_t GetHash() const
Definition: G4ITReaction.cc:61
G4bool operator()(G4ITReactionPtr rhs, G4ITReactionPtr lhs) const
Definition: G4ITReaction.cc:40
#define G4ThreadLocal
Definition: tls.hh:77
static unsigned long FASTCALL hash(XML_Parser parser, KEY s)
Definition: xmlparse.cc:5967