StRoot  1
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Groups Pages
GeometryTags.C
1 void GeometryTags() {
2  if (gClassTable->GetID("StMaker") < 0) {
3  gSystem->Load("St_base");
4  gSystem->Load("StChain");
5  }
6  DbAlias_t *db = StMaker::GetDbAliases();
7  DbAlias_t *dbTag = db;
8  for (Int_t i = 0; dbTag->tag; i++, dbTag++) {
9  cout << "Geometry Tags:\t"
10  << dbTag->tag
11  << "\t" << dbTag->date
12  << "\t" << dbTag->time
13  << "\t" << dbTag->geometry
14  << "\t" << dbTag->comment << endl;
15  }
16 }