View | Details | Raw Unified | Return to problem 1949
Collapse All | Expand All

(-)source/analysis/management/include/G4VAnalysisManager.hh (+2 lines)
Lines 404-409 Link Here
404
    G4int GetH1Id(const G4String& name, G4bool warn = true) const;
404
    G4int GetH1Id(const G4String& name, G4bool warn = true) const;
405
    G4int GetH2Id(const G4String& name, G4bool warn = true) const;
405
    G4int GetH2Id(const G4String& name, G4bool warn = true) const;
406
    G4int GetH3Id(const G4String& name, G4bool warn = true) const;
406
    G4int GetH3Id(const G4String& name, G4bool warn = true) const;
407
    G4int GetP1Id(const G4String& name, G4bool warn = true) const;
408
    G4int GetP2Id(const G4String& name, G4bool warn = true) const;
407
   
409
   
408
    // Methods to manipulate histogram, profiles & ntuples additional information
410
    // Methods to manipulate histogram, profiles & ntuples additional information
409
    //
411
    //
(-)source/analysis/management/include/G4VAnalysisManager.icc (+14 lines)
Lines 179-184 Link Here
179
179
180
//_____________________________________________________________________________
180
//_____________________________________________________________________________
181
inline 
181
inline 
182
G4int G4VAnalysisManager::GetP1Id(const G4String& name, G4bool warn) const
183
{
184
  return fVP1Manager->GetP1Id(name, warn);
185
}  
186
187
//_____________________________________________________________________________
188
inline 
189
G4int G4VAnalysisManager::GetP2Id(const G4String& name, G4bool warn) const
190
{
191
  return fVP2Manager->GetP2Id(name, warn);
192
}  
193
194
//_____________________________________________________________________________
195
inline 
182
G4int G4VAnalysisManager::GetH1Nbins(G4int id) const
196
G4int G4VAnalysisManager::GetH1Nbins(G4int id) const
183
{
197
{
184
  return fVH1Manager->GetH1Nbins(id);
198
  return fVH1Manager->GetH1Nbins(id);

Return to problem 1949