Class Reference for E1039 Core & Analysis Software
PdbApplication.cc
Go to the documentation of this file.
1 //-----------------------------------------------------------------------------
2 // $Header: /afs/rhic.bnl.gov/phenix/PHENIX_CVS/offline/database/pdbcal/base/PdbApplication.cc,v 1.6 2013/02/01 04:32:04 pinkenbu Exp $
3 //
4 // The pdbcal package
5 // Copyright (C) PHENIX collaboration, 1999
6 //
7 // Implementation of class PdbApplication
8 //
9 // Author: Matthias Messer
10 //-----------------------------------------------------------------------------
11 
12 #include "PdbApplication.h"
13 
14 #include <iostream>
15 #include <memory>
16 
17 std::auto_ptr<PdbApplication> PdbApplication::__instance;
18 
20 {
21  if ( not __instance.get() )
22  {
23  std::cerr << __FILE__ << " " << __LINE__ << " No instance of PdbApplication available" << std::endl;
24  return NULL;
25  }
26 
27  return __instance.get();
28 }
29 
#define NULL
Definition: Pdb.h:9
static PdbApplication * instance()
static std::auto_ptr< PdbApplication > __instance