Classes | Typedefs | Functions
gallery Namespace Reference

Classes

class  AssnsBranchData
 
class  BranchData
 
class  BranchMapReader
 
class  DataGetterHelper
 
class  Event
 
class  EventHistoryGetter
 
class  EventNavigator
 
class  FindMaker
 
class  Handle
 
class  InfoForTypeLabelInstance
 
class  TypeLabelInstanceKey
 
class  ValidHandle
 

Typedefs

using ProductWithID = std::pair< art::EDProduct const *, art::ProductID >
 
using IndexProductIDPair = std::pair< unsigned int, art::ProductID >
 

Functions

void throwTreeNotFound (std::string const &treeName)
 
void throwBranchNotFound (std::string const &branchName)
 
void throwIllegalRandomAccess ()
 
void throwIllegalDecrement ()
 
void throwValidHandleNullPointer ()
 

Typedef Documentation

using gallery::IndexProductIDPair = typedef std::pair<unsigned int, art::ProductID>

Definition at line 21 of file InfoForTypeLabelInstance.h.

using gallery::ProductWithID = typedef std::pair<art::EDProduct const*, art::ProductID>

Definition at line 70 of file DataGetterHelper.h.

Function Documentation

void gallery::throwBranchNotFound ( std::string const &  branchName)

Definition at line 17 of file throwFunctions.cc.

18  {
20  << "Could not find the TBranch named \'" << branchName
21  << "\' in the input file.\nMaybe it is not an art format file or maybe "
22  "it is corrupted.\n";
23  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
void gallery::throwIllegalDecrement ( )

Definition at line 35 of file throwFunctions.cc.

36  {
38  << "This Event can not be decremented.\n"
39  << "Please make sure atEnd() is not true for this Event.";
40  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
void gallery::throwIllegalRandomAccess ( )

Definition at line 26 of file throwFunctions.cc.

27  {
29  << "Random access is not allowed.\n"
30  << "Please make sure your gallery::Event was not created using more than "
31  "one file.\n";
32  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
void gallery::throwTreeNotFound ( std::string const &  treeName)

Definition at line 8 of file throwFunctions.cc.

9  {
11  << "Could not find the TTree named \'" << treeName
12  << "\' in the input file.\nMaybe it is not an art format file or maybe "
13  "it is corrupted.\n";
14  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66
void gallery::throwValidHandleNullPointer ( )

Definition at line 8 of file ValidHandle.cc.

9  {
11  << "Attempt to create ValidHandle with null pointer";
12  }
cet::coded_exception< errors::ErrorCodes, ExceptionDetail::translate > Exception
Definition: Exception.h:66