JAPAn
Just Another Parity Analyzer
Loading...
Searching...
No Matches
VQwSystem.h
Go to the documentation of this file.
1/*!
2 * \file VQwSystem.h
3 * \brief Virtual base class for all Qweak system objects
4 */
5
6#pragma once
7
8#include "TROOT.h"
9#include "TNamed.h"
10
11/**
12 * \class VQwSystem
13 * \ingroup QwAnalysis
14 * \brief Base class for all named Qweak system objects
15 *
16 * Provides ROOT TNamed functionality for all framework objects
17 * that need naming and identification within the analysis system.
18 */
19class VQwSystem : public TNamed {
20
21 public:
22 VQwSystem (const char* name): TNamed (name, "Qweak-ROOT") { };
23 virtual ~VQwSystem() { };
24
25};
VQwSystem(const char *name)
Definition VQwSystem.h:22
virtual ~VQwSystem()
Definition VQwSystem.h:23