Belle II Software development
SVDLocalRunBadStrips.h
1/**************************************************************************
2 * basf2 (Belle II Analysis Software Framework) *
3 * Author: The Belle II Collaboration *
4 * *
5 * See git log for contributors and copyright holders. *
6 * This file is licensed under LGPL-3.0, see LICENSE.md. *
7 **************************************************************************/
8
9#pragma once
10
11#include <TObject.h>
12#include <vxd/dataobjects/VxdID.h>
13
14namespace Belle2 {
19
26 class SVDLocalRunBadStrips : public TObject {
27 public:
31
44 bool isBad(VxdID vxdID, bool isU, unsigned char strip) const
45 {
46 return false;
47 }
48 private:
49
51 };
52
53}
54
SVDLocalRunBadStrips()
Constructor, no input argument is required.
ClassDef(SVDLocalRunBadStrips, 1)
needed by root
bool isBad(VxdID vxdID, bool isU, unsigned char strip) const
This is the method for knowing whether a strip is bad, according to local runs results.
Class to uniquely identify a any structure of the PXD and SVD.
Definition VxdID.h:33
Abstract base class for different kinds of events.