ECCE @ EIC Software
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
PdbBankManager.cc
Go to the documentation of this file. Or view the newest version in sPHENIX GitHub for file PdbBankManager.cc
1 //-----------------------------------------------------------------------------
2 // $Header: /afs/rhic.bnl.gov/phenix/PHENIX_CVS/offline/database/pdbcal/base/PdbBankManager.cc,v 1.2 2004/08/13 17:46:00 purschke Exp $
3 //
4 // The pdbcal package
5 // Copyright (C) PHENIX collaboration, 1999
6 //
7 // Implementation of class PdbBankManager
8 //
9 // Author: Matthias Messer
10 //-----------------------------------------------------------------------------
11 #include "PdbBankManager.h"
12 
13 #include <iostream>
14 
16 
18 {
19  __instance = nullptr;
20 }
21 
23 {
24  if (!__instance)
25  {
26  std::cout << __FILE__ << " " << __LINE__ << " No instance of PdbBankManager available" << std::endl;
27  }
28 
29  return __instance;
30 }