ATLAS Offline Software
Loading...
Searching...
No Matches
Splitter.h
Go to the documentation of this file.
1/*
2 Copyright (C) 2002-2024 CERN for the benefit of the ATLAS collaboration
3*/
4
9
10#ifndef LArSamples_Splitter_H
11#define LArSamples_Splitter_H
12
14
15class TString;
16
17namespace LArSamples {
18
19 class Interface;
20
22
23 public:
24
26 Splitter(const Interface& interface) : m_interface(&interface) { }
27
28 bool splitEvents(const TString& name, unsigned int max = 20) const;
29
30 private:
31
33 };
34}
35
36#endif
#define max(a, b)
Definition cfImp.cxx:41
Define macros for attributes used to control the static checker.
#define ATLAS_NOT_THREAD_SAFE
getNoisyStrip() Find noisy strips from hitmaps and write out into xml/db formats
Splitter(const Interface &interface)
Constructor.
Definition Splitter.h:26
const Interface * m_interface
Definition Splitter.h:32