This file is indexed.

/usr/include/BALL/KERNEL/atom.iC is in libball1.4-dev 1.4.1+20111206-3.

This file is owned by root:root, with mode 0o644.

The actual contents of the file can be viewed below.

  1
  2
  3
  4
  5
  6
  7
  8
  9
 10
 11
 12
 13
 14
 15
 16
 17
 18
 19
 20
 21
 22
 23
 24
 25
 26
 27
 28
 29
 30
 31
 32
 33
 34
 35
 36
 37
 38
 39
 40
 41
 42
 43
 44
 45
 46
 47
 48
 49
 50
 51
 52
 53
 54
 55
 56
 57
 58
 59
 60
 61
 62
 63
 64
 65
 66
 67
 68
 69
 70
 71
 72
 73
 74
 75
 76
 77
 78
 79
 80
 81
 82
 83
 84
 85
 86
 87
 88
 89
 90
 91
 92
 93
 94
 95
 96
 97
 98
 99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
// -*- Mode: C++; tab-width: 2; -*-
// vi: set ts=2:
//

BALL_INLINE
void Atom::setElement(const Element& element)
{
	element_ = &element;
}

BALL_INLINE
const Element& Atom::getElement() const
{
	return *element_;
}

BALL_INLINE
void Atom::setCharge(float charge)
{
	charge_ = charge;
}

BALL_INLINE
float Atom::getCharge() const
{
	return charge_;
}

BALL_INLINE
void Atom::setFormalCharge(Index charge)
{
	formal_charge_ = charge;
}

BALL_INLINE
Index Atom::getFormalCharge() const
{
	return formal_charge_;
}

BALL_INLINE
const String& Atom::getName() const
{
	return name_;
}

BALL_INLINE
const Molecule* Atom::getMolecule() const
{
	return const_cast<Atom&>(*this).getMolecule();
}

BALL_INLINE
const Fragment* Atom::getFragment() const
{
	return const_cast<Atom&>(*this).getFragment();
}

BALL_INLINE
const Residue* Atom::getResidue() const
{
	return const_cast<Atom&>(*this).getResidue();
}

BALL_INLINE
const Chain* Atom::getChain() const
{
	return const_cast<Atom&>(*this).getChain();
}

BALL_INLINE
const SecondaryStructure* Atom::getSecondaryStructure() const
{
	return const_cast<Atom&>(*this).getSecondaryStructure();
}

BALL_INLINE
void Atom::setName(const String& name)
{
	name_ = name;
}

BALL_INLINE
void Atom::setPosition(const Vector3& position)
{
	position_.set(position);
}

BALL_INLINE
Vector3& Atom::getPosition()
{
	return position_;
}

BALL_INLINE
const Vector3& Atom::getPosition() const
{
	return position_;
}

BALL_INLINE
void Atom::setRadius(float radius)
{
	radius_ = radius;
}

BALL_INLINE
float Atom::getRadius() const
{
	return radius_;
}

BALL_INLINE
void Atom::setType(Type type)
{
	type_ = type;
}

BALL_INLINE
Atom::Type Atom::getType() const
{
	return type_;
}

BALL_INLINE
void Atom::setTypeName(const String& type_name)
{
	type_name_ = type_name;
}

BALL_INLINE
String Atom::getTypeName() const
{
	return type_name_;
}

BALL_INLINE
void Atom::setVelocity(const Vector3& velocity)
{
	velocity_.set(velocity);
}

BALL_INLINE
Vector3& Atom::getVelocity()
{
	return velocity_;
}

BALL_INLINE
const Vector3& Atom::getVelocity() const
{
	return velocity_;
}

BALL_INLINE
void Atom::setForce(const Vector3& force)
{
	force_.set(force);
}

BALL_INLINE
Vector3& Atom::getForce()
{
	return force_;
}

BALL_INLINE
const Vector3& Atom::getForce() const
{
	return force_;
}

BALL_INLINE
void Atom::get(Atom& atom, bool deep) const
{
	atom.set(*this, deep);
}

BALL_INLINE
bool Atom::operator == (const Atom& atom) const
{
	return(Object::operator ==(atom));
}

BALL_INLINE
bool Atom::operator != (const Atom& atom) const
{
	return ! (*this == atom);
}

BALL_INLINE
Size Atom::countBonds() const
{
	return number_of_bonds_;
}

BALL_INLINE
bool Atom::isBound() const
{
	return (number_of_bonds_ > 0);
}

BALL_INLINE
float Atom::getDistance(const Atom& a) const
{
	return getPosition().getDistance(a.getPosition());
}