~vpec/maus/tof_calib_read

« back to all changes in this revision

Viewing changes to tests/style/cpplint_exceptions.py

reverse merge from trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
legacy = os.path.join('src','legacy')
31
31
tst = os.path.join('tests', 'cpp_unit')
32
32
 
 
33
exceptions[os.path.join(cpp_cm, 'Simulation','MAUSRunAction.hh')] = [
 
34
('#include "globals.hh"', 'cpplint confused with g4 header', 'rogers'),
 
35
('#include "G4UserRunAction.hh"', 'cpplint confused with g4 header', 'rogers'),
 
36
]
 
37
 
 
38
exceptions[os.path.join(cpp_cm, 'Simulation','MAUSRunAction.cc')] = [
 
39
('#include "G4Run.hh"', 'cpplint confused with g4 header', 'rogers'),
 
40
('#include "G4VVisManager.hh"', 'cpplint confused with g4 header', 'rogers'),
 
41
('#include "G4UImanager.hh"', 'cpplint confused with g4 header', 'rogers'),
 
42
]
 
43
 
 
44
exceptions[os.path.join(cpp_cm, 'Simulation','MAUSPhysicsList.hh')] = [
 
45
('#include "G4VModularPhysicsList.hh"', 'cpplint confused with g4 header', 'rogers'),
 
46
('#include "G4UImanager.hh"', 'cpplint confused with g4 header', 'rogers'),
 
47
('#include "G4UserSpecialCuts.hh"', 'cpplint confused with g4 header', 'rogers'),
 
48
('#include "G4StepLimiter.hh"', 'cpplint confused with g4 header', 'rogers'),
 
49
]
 
50
 
 
51
exceptions[os.path.join(cpp_cm, 'Simulation','MAUSPhysicsList.cc')] = [
 
52
('#include "G4UImanager.hh"', 'cpplint confused with g4 header', 'rogers'),
 
53
('#include "G4ProcessTable.hh"', 'cpplint confused with g4 header', 'rogers'),
 
54
('#include "G4ProcessVector.hh"', 'cpplint confused with g4 header', 'rogers'),
 
55
('#include "G4PhysListFactory.hh"', 'cpplint confused with g4 header', 'rogers'),
 
56
('#include "globals.hh"', 'cpplint confused with g4 header', 'rogers'),
 
57
]
 
58
 
33
59
exceptions[os.path.join(cpp_cm, 'Simulation','VirtualPlanes.cc')] = [
34
 
('#include "G4Track.hh"', 'cpplint confused with maus header', 'rogers'),
35
 
('#include "G4Step.hh"', 'cpplint confused with maus header', 'rogers'),
36
 
('#include "G4StepPoint.hh"', 'cpplint confused with maus header', 'rogers')
 
60
('#include "G4Track.hh"', 'cpplint confused with g4 header', 'rogers'),
 
61
('#include "G4Step.hh"', 'cpplint confused with g4 header', 'rogers'),
 
62
('#include "G4StepPoint.hh"', 'cpplint confused with g4 header', 'rogers')
37
63
]
38
64
 
39
65
exceptions[os.path.join(tst, 'Simulation', 'VirtualPlaneTest.cc')] = [
40
 
('#include "G4ParticleTable.hh"', 'cpplint confused with maus header', 'rogers'),
41
 
('#include "G4Step.hh"', 'cpplint confused with maus header', 'rogers'),
42
 
('#include "G4StepPoint.hh"', 'cpplint confused with maus header', 'rogers')
 
66
('#include "G4ParticleTable.hh"', 'cpplint confused with g4 header', 'rogers'),
 
67
('#include "G4Step.hh"', 'cpplint confused with g4 header', 'rogers'),
 
68
('#include "G4StepPoint.hh"', 'cpplint confused with g4 header', 'rogers')
43
69
]
44
70
 
45
71
exceptions[os.path.join(cpp_cm, 'Simulation','MAUSPrimaryGeneratorAction.hh')] = [