ATLAS Offline Software
Loading...
Searching...
No Matches
PMetadata.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2017 CERN for the benefit of the ATLAS collaboration
3*/
4
5#ifndef DQM_PERSISTENCY_PMETADATA_H
6#define DQM_PERSISTENCY_PMETADATA_H
7
8#include <string>
9#include <map>
10
11namespace dqm_persistency {
12 class PMetadata : public TObject {
13 public:
14 std::map<std::string,std::string> data;
15 virtual ~PMetadata() { }
16
17 void Print(const Option_t* opt="") const;
18//Get rid of Root macros that confuse Doxygen
22 };
23}
24
25#endif //DQM_PERSISTENCY_PMETADATA_H
std::map< std::string, std::string > data
Definition PMetadata.h:14
void Print(const Option_t *opt="") const