Geant4 Cross Reference

Cross-Referencing   Geant4
Geant4/analysis/hntools/src/G4TH2ToolsManager.cc

Version: [ ReleaseNotes ] [ 1.0 ] [ 1.1 ] [ 2.0 ] [ 3.0 ] [ 3.1 ] [ 3.2 ] [ 4.0 ] [ 4.0.p1 ] [ 4.0.p2 ] [ 4.1 ] [ 4.1.p1 ] [ 5.0 ] [ 5.0.p1 ] [ 5.1 ] [ 5.1.p1 ] [ 5.2 ] [ 5.2.p1 ] [ 5.2.p2 ] [ 6.0 ] [ 6.0.p1 ] [ 6.1 ] [ 6.2 ] [ 6.2.p1 ] [ 6.2.p2 ] [ 7.0 ] [ 7.0.p1 ] [ 7.1 ] [ 7.1.p1 ] [ 8.0 ] [ 8.0.p1 ] [ 8.1 ] [ 8.1.p1 ] [ 8.1.p2 ] [ 8.2 ] [ 8.2.p1 ] [ 8.3 ] [ 8.3.p1 ] [ 8.3.p2 ] [ 9.0 ] [ 9.0.p1 ] [ 9.0.p2 ] [ 9.1 ] [ 9.1.p1 ] [ 9.1.p2 ] [ 9.1.p3 ] [ 9.2 ] [ 9.2.p1 ] [ 9.2.p2 ] [ 9.2.p3 ] [ 9.2.p4 ] [ 9.3 ] [ 9.3.p1 ] [ 9.3.p2 ] [ 9.4 ] [ 9.4.p1 ] [ 9.4.p2 ] [ 9.4.p3 ] [ 9.4.p4 ] [ 9.5 ] [ 9.5.p1 ] [ 9.5.p2 ] [ 9.6 ] [ 9.6.p1 ] [ 9.6.p2 ] [ 9.6.p3 ] [ 9.6.p4 ] [ 10.0 ] [ 10.0.p1 ] [ 10.0.p2 ] [ 10.0.p3 ] [ 10.0.p4 ] [ 10.1 ] [ 10.1.p1 ] [ 10.1.p2 ] [ 10.1.p3 ] [ 10.2 ] [ 10.2.p1 ] [ 10.2.p2 ] [ 10.2.p3 ] [ 10.3 ] [ 10.3.p1 ] [ 10.3.p2 ] [ 10.3.p3 ] [ 10.4 ] [ 10.4.p1 ] [ 10.4.p2 ] [ 10.4.p3 ] [ 10.5 ] [ 10.5.p1 ] [ 10.6 ] [ 10.6.p1 ] [ 10.6.p2 ] [ 10.6.p3 ] [ 10.7 ] [ 10.7.p1 ] [ 10.7.p2 ] [ 10.7.p3 ] [ 10.7.p4 ] [ 11.0 ] [ 11.0.p1 ] [ 11.0.p2 ] [ 11.0.p3, ] [ 11.0.p4 ] [ 11.1 ] [ 11.1.1 ] [ 11.1.2 ] [ 11.1.3 ] [ 11.2 ] [ 11.2.1 ] [ 11.2.2 ] [ 11.3.0 ]

Diff markup

Differences between /analysis/hntools/src/G4TH2ToolsManager.cc (Version 11.3.0) and /analysis/hntools/src/G4TH2ToolsManager.cc (Version 5.0)


  1 //                                                  1 
  2 // *******************************************    
  3 // * License and Disclaimer                       
  4 // *                                              
  5 // * The  Geant4 software  is  copyright of th    
  6 // * the Geant4 Collaboration.  It is provided    
  7 // * conditions of the Geant4 Software License    
  8 // * LICENSE and available at  http://cern.ch/    
  9 // * include a list of copyright holders.         
 10 // *                                              
 11 // * Neither the authors of this software syst    
 12 // * institutes,nor the agencies providing fin    
 13 // * work  make  any representation or  warran    
 14 // * regarding  this  software system or assum    
 15 // * use.  Please see the license in the file     
 16 // * for the full disclaimer and the limitatio    
 17 // *                                              
 18 // * This  code  implementation is the result     
 19 // * technical work of the GEANT4 collaboratio    
 20 // * By using,  copying,  modifying or  distri    
 21 // * any work based  on the software)  you  ag    
 22 // * use  in  resulting  scientific  publicati    
 23 // * acceptance of all terms of the Geant4 Sof    
 24 // *******************************************    
 25 //                                                
 26                                                   
 27 // Author: Ivana Hrivnacova, 10/08/2022  (ivan    
 28                                                   
 29 #include "G4THnToolsManager.hh"                   
 30                                                   
 31 #include "tools/histo/h2d"                        
 32                                                   
 33 using namespace G4Analysis;                       
 34                                                   
 35 #include <fstream>                                
 36                                                   
 37 // Specialization for H2 type                     
 38                                                   
 39                                                   
 40 //____________________________________________    
 41 template <>                                       
 42 tools::histo::h2d* G4THnToolsManager<kDim2, to    
 43   const G4String& title,                          
 44   const std::array<G4HnDimension, kDim2>& bins    
 45   const std::array<G4HnDimensionInformation, k    
 46 {                                                 
 47   // Apply hn information to bins                 
 48   auto newXBins(bins[kX]);                        
 49   Update(newXBins, hnInfo[kX]);                   
 50   auto newYBins(bins[kY]);                        
 51   Update(newYBins, hnInfo[kY]);                   
 52                                                   
 53   if ((hnInfo[kX].fBinScheme == G4BinScheme::k    
 54       (hnInfo[kY].fBinScheme == G4BinScheme::k    
 55     return new tools::histo::h2d(title,           
 56                                  newXBins.fNBi    
 57                                  newYBins.fNBi    
 58   }                                               
 59                                                   
 60   return new tools::histo::h2d(title, newXBins    
 61 }                                                 
 62                                                   
 63 //____________________________________________    
 64 template <>                                       
 65 void G4THnToolsManager<kDim2, tools::histo::h2    
 66   tools::histo::h2d* ht,                          
 67   const std::array<G4HnDimension, kDim2>& bins    
 68   const std::array<G4HnDimensionInformation, k    
 69 {                                                 
 70   // Apply hn information to bins                 
 71   auto newXBins(bins[kX]);                        
 72   Update(newXBins, hnInfo[kX]);                   
 73   auto newYBins(bins[kY]);                        
 74   Update(newYBins, hnInfo[kY]);                   
 75                                                   
 76   if ((hnInfo[kX].fBinScheme == G4BinScheme::k    
 77       (hnInfo[kY].fBinScheme == G4BinScheme::k    
 78     ht->configure(                                
 79           newXBins.fNBins, newXBins.fMinValue,    
 80           newYBins.fNBins, newYBins.fMinValue,    
 81     return;                                       
 82   }                                               
 83                                                   
 84   ht->configure(newXBins.fEdges, newYBins.fEdg    
 85 }                                                 
 86                                                   
 87 //____________________________________________    
 88 template <>                                       
 89 G4bool G4THnToolsManager<kDim2, tools::histo::    
 90   tools::histo::h2d* ht, const G4HnInformation    
 91   std::array<G4double, kDim2>& value, G4double    
 92 {                                                 
 93   const auto& xInfo = hnInformation.GetHnDimen    
 94   const auto& yInfo = hnInformation.GetHnDimen    
 95                                                   
 96   // Apply hn information to value                
 97   Update(value[kX], xInfo);                       
 98   Update(value[kY], yInfo);                       
 99                                                   
100   // Fill updated value                           
101   ht->fill(value[kX], value[kY], weight);         
102                                                   
103   return true;                                    
104 }                                                 
105                                                   
106 //____________________________________________    
107 template <>                                       
108 G4bool G4THnToolsManager<kDim2, tools::histo::    
109   std::ofstream& output)                          
110 {                                                 
111 // Write selected objects on ASCII file           
112 // According to the implementation by Michel M    
113 // extended examples.                             
114                                                   
115   // Do nothing if no histograms are selected     
116   if ( ! GetHnManager()->IsAscii() ) return tr    
117                                                   
118   // Write h2 histograms                          
119   auto id = GetHnManager()->GetFirstId();         
120   for (const auto& [h2, info] : *GetTHnVector(    
121                                                   
122     if ( (h2 == nullptr) || (! info->GetAscii(    
123       // skip writing                             
124       // if h2 was deleted or writing ascii is    
125       id++;                                       
126       continue;                                   
127     }                                             
128                                                   
129     Message(kVL3, "write on ascii", "h2d", inf    
130                                                   
131     output << "\n  2D histogram " << id++ << "    
132            << "\n \n \t \t     X \t\t     Y \t    
133                                                   
134     for (G4int j=0; j< G4int(h2->axis_x().bins    
135       for (G4int k=0; k< G4int(h2->axis_y().bi    
136         output << "  " << j << "\t" << k << "\    
137                << h2->axis_x().bin_center(j) <    
138                << h2->axis_y().bin_center(k) <    
139                << h2->bin_height(j, k) << G4en    
140       }                                           
141     }                                             
142   }                                               
143                                                   
144   return output.good();                           
145 }                                                 
146