ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
G4ITReaction.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file G4ITReaction.cc
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  double time1 = rhs->GetTime();
44  double time2 = lhs->GetTime();
45  if (time1 == time2)
46  {
47  return rhs->GetHash() < lhs->GetHash();
48  }
49  return rhs->GetTime() < lhs->GetTime();
50 }
51 
52 
53 template<class T>
54 inline 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 
61 std::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 
69 G4ITReaction::G4ITReaction(double time, G4Track* trackA, G4Track* trackB) :
71  fTime(time),
72  fReactants(trackA,trackB)
73 {
74  //if(gAll == 0) gAll = new std::set<G4ITReaction*>();
75  //gAll->insert(this);
76 
78 }
79 
81 {
82  //gAll->erase(this);
84 }
85 
87 {
88  G4ITReactionPtr backMeUp = this->shared_from_this();
89  for(G4ReactionPerTrackIt::iterator it = fReactionPerTrack.begin() ;
90  it != fReactionPerTrack.end() ; ++it)
91  {
92  // G4cout << it->first.get() << G4endl;
93  // assert(it->first.get() != 0);
94  it->first->RemoveThisReaction(it->second);
95  }
96  fReactionPerTrack.clear();
97 
99  {
101  delete fReactionPerTimeIt;
102  fReactionPerTimeIt = 0;
103  }
104 }
105 
106 bool G4ITReactionPerTrack::RemoveThisReaction(G4ITReactionList::iterator it)
107 {
108  // G4cout << "G4ITReactionPerTrack::RemoveReaction" << G4endl;
109  fReactions.erase(it);
110  if(fReactions.empty())
111  {
112  // G4cout << "G4ITReactionPerTrack is empty" << G4endl;
113  G4ITReactionSet::Instance()->RemoveReactionPerTrack(this->shared_from_this());
114  return true;
115  }
116  return false;
117 }